Skip to content

Commit

Permalink
don't redo type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
denniswittich committed Aug 30, 2024
1 parent b934aaa commit fb30990
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion learning_loop_node/detector/detector_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ async def soft_reload(self) -> None:
Context(organization=self.organization, project=self.project),
self.loop_communicator)
self.relevance_filter = RelevanceFilter(self.outbox)
self.version_control: rest_version_control.VersionMode = rest_version_control.VersionMode.Pause if os.environ.get(
self.version_control = rest_version_control.VersionMode.Pause if os.environ.get(
'VERSION_CONTROL_DEFAULT', 'follow_loop').lower() == 'pause' else rest_version_control.VersionMode.FollowLoop
self.target_model = None
# self.setup_sio_server()
Expand Down

0 comments on commit fb30990

Please sign in to comment.