Skip to content

Commit

Permalink
fix non-closed parenthesis
Browse files Browse the repository at this point in the history
  • Loading branch information
Arvid Lagerqvist committed May 2, 2023
1 parent 6264b72 commit 152e393
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def __init__(self, commands: List[str], time_step_len_seconds: float) -> None:
threading.Thread.__init__(self)
self.commands = commands
self.time_step_len_seconds = time_step_len_seconds
logging.info("ClientThreadNew initialized, commands: " + str(commands) + ", time_step_len_seconds: " + str(time_step_len_seconds)
logging.info("ClientThreadNew initialized, commands: " + str(commands) + ", time_step_len_seconds: " + str(time_step_len_seconds))

def run(self) -> None:
"""
Expand Down

0 comments on commit 152e393

Please sign in to comment.