Skip to content

Commit

Permalink
More fixing
Browse files Browse the repository at this point in the history
  • Loading branch information
albireox committed Dec 25, 2024
1 parent 88a3383 commit 93e1b5a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions python/lvmecp/actor/actor.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ def __init__(
self._emit_status_task: asyncio.Task | None = None


async def start(self, **kwargs):
"""Starts the actor."""

self.running: bool = False

async def start(self, **kwargs):
"""Starts the actor."""

await super().start(**kwargs)
self.running = True

Expand Down

0 comments on commit 93e1b5a

Please sign in to comment.