私はこのクラスを持っています:
from threading import Thread
import time
class Timer(Thread):
def __init__(self, interval, function, *args, **kwargs):
Thread.__init__()
self.interval = interval
self.function = function
self.args = args
self.kwargs = kwargs
self.start()
def run(self):
time.sleep(self.interval)
return self.function(*self.args, **self.kwargs)
そして、このスクリプトでそれを呼び出しています:
import timer
def hello():
print \"hello, world
t = timer.Timer(1.0, hello)
t.run()
このエラーが発生し、理由がわかりません。unbound method __init__() must be called with instance as first argument