This commit is contained in:
Jonas Zeunert
2022-09-01 00:07:16 +02:00
parent bb12a2da17
commit ffdd522c7b
3 changed files with 9 additions and 2 deletions

View File

@@ -2,8 +2,12 @@ from observable import Observable
from collections import defaultdict
import logging
import time
class Target(Observable):
lastActivation = 0
def __init__(self, points, name):
logging.info("Target " + name + " created")
self._events = defaultdict(list)