what if the last commit produced running code? who knows, but now it runs

This commit is contained in:
Laura Klünder 2023-12-07 02:27:12 +01:00
parent 34af60782c
commit 37507e65ab
3 changed files with 3 additions and 4 deletions

View file

@ -56,7 +56,7 @@ class LocatorPoint:
class Locator:
peers: list[LocatorPeer] = field(default_factory=list)
peer_lookup: dict[BSSID, int] = field(default_factory=dict)
xyz: np.array = np.empty((0,))
xyz: np.array = field(default_factory=np.empty((0,)))
spaces: dict[int, "LocatorSpace"] = field(default_factory=dict)
@classmethod