diff --git a/busylight/lights/taskable.py b/busylight/lights/taskable.py index 008e051..4bc6487 100644 --- a/busylight/lights/taskable.py +++ b/busylight/lights/taskable.py @@ -2,7 +2,6 @@ """ import asyncio - from typing import Any, Awaitable, Dict, Optional @@ -45,8 +44,6 @@ def add_task(self, name: str, coroutine: Awaitable) -> asyncio.Task: except KeyError: pass - name += f"-{id(self)}" - # >py3.7, create_task takes a `name` parameter self.tasks[name] = self.event_loop.create_task(coroutine(self))