Skip to content

Commit

Permalink
fix: typo "self.components => components"
Browse files Browse the repository at this point in the history
  • Loading branch information
mmikita95 committed Feb 19, 2024
1 parent cfd554a commit ee034d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/streamsync/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -885,7 +885,7 @@ def __init__(self, session_id: str, cookies: Optional[Dict[str, str]], headers:
self.component_manager = ComponentManager()
if components:
try:
self.component_manager.ingest(self.components)
self.component_manager.ingest(components)
except BaseException:
self.session_state.add_log_entry(
"error", "UI Components Error", "Couldn't load components. An exception was raised.", tb.format_exc())
Expand Down

0 comments on commit ee034d8

Please sign in to comment.