-1
をvarsのIだけで正常に動作..しかし、私の集約関数で、私はself.countersの辞書をクリアする必要がツイストloopingcallのアクセスクラスは
class Intake:
def __init__(self):
#
# aggregate dict to store all the counters
#
self.counters = {}
#
# start a looping call to run reach minute
#
self.lc = task.LoopingCall(self.aggregate, self.counters)
self.lc.start(60)
def aggregate(self, counters):
print counters
したがって、次の例を持っています。私は、問題はこれをやったよ..私はその関数でself.countersを参照する場合
は私が
exceptions.AttributeError: Intake instance has no attribute 'counters'
...だから何が問題なのですか?それは動作しませんか? – kindall
質問を編集して、エラーを下部に追加しました – Mike