Python クラス オブジェクトがあり、1 つのクラス変数の値を割り当てたい
class Groupclass(Workerclass):
"""worker class"""
count = 0
def __init__(self):
"""initialize time"""
Groupclass.count += 1
self.membercount = 0;
self.members = []
def __del__(self):
"""delte a worker data"""
Groupclass.count -= 1
if __name__ == "__main__":
group1 = Groupclass()
この実行結果は正しいですが、次のようなエラー メッセージが表示されます。
Exception AttributeError: "'NoneType' object has no attribute 'count'" in <bound method Groupclass.__del__ of <__main__.Groupclass instance at 0x00BA6710>> ignored
誰かが私が間違っていたことを教えてもらえますか?