mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-22 17:43:14 +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:
parent
ed050b37e1
commit
bd39171611
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user