mirror of
https://github.com/xcat2/confluent.git
synced 2025-01-16 12:47: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:
parent
3b3475e073
commit
814209385c
@ -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…
x
Reference in New Issue
Block a user