2
0
mirror of https://github.com/xcat2/confluent.git synced 2026-06-11 17:28:50 +00:00

Fix another use of async name

For better python 3 compatibility,
stop using async as a variable name.
This commit is contained in:
Jarrod Johnson
2020-04-10 12:08:55 -04:00
parent ed050b37e1
commit bd39171611
+2 -2
View File
@@ -64,8 +64,8 @@ class AsyncTermRelation(object):
# Need to keep an association of term object to async
# This allows the async handler to know the context of
# outgoing data to provide to calling code
def __init__(self, termid, async):
self.async = async
def __init__(self, termid, asynchdl):
self.async = asynchdl
self.termid = termid
def got_data(self, data):