Skip to content

Commit

Permalink
remove extraneous optional params
Browse files Browse the repository at this point in the history
  • Loading branch information
ankona committed Feb 22, 2024
1 parent 045e2e3 commit 6947e01
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions smartsim/_core/entrypoints/telemetrymonitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -1154,10 +1154,8 @@ async def main(
# a manifest may not exist depending on startup timing
action_handler.process_manifest(str(manifest_path))

observer.schedule(log_handler, telemetry_path, recursive=False) # type:ignore
observer.schedule(
action_handler, telemetry_path, recursive=False
) # type:ignore
observer.schedule(log_handler, telemetry_path) # type:ignore
observer.schedule(action_handler, telemetry_path) # type:ignore
observer.start() # type: ignore

await event_loop(observer, action_handler, frequency_ms, cooldown_duration)
Expand Down

0 comments on commit 6947e01

Please sign in to comment.