Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
qhdwight committed Dec 30, 2023
1 parent d291f9b commit 0dc8fb0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/util/state_lib/state_machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ class StateMachine:
stop_event: Event

def __init__(
self,
initial_state: State,
name: str,
log_level: LogLevel = LogLevel.DEBUG,
logger: Callable[[str], None] = print,
self,
initial_state: State,
name: str,
log_level: LogLevel = LogLevel.DEBUG,
logger: Callable[[str], None] = print,
):
self.current_state = initial_state
self.state_lock = Lock()
Expand Down

0 comments on commit 0dc8fb0

Please sign in to comment.