Skip to content

Commit

Permalink
event stream: use Optional instead of more modern type annotation
Browse files Browse the repository at this point in the history
Signed-off-by: Sumner Evans <[email protected]>
  • Loading branch information
sumnerevans committed Jan 19, 2024
1 parent 63b4237 commit 8912fc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion linkedin_messaging/linkedin.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ class LinkedInMessaging:
]

_realtime_session_id: uuid.UUID
_realtime_connection_id: uuid.UUID | None = None
_realtime_connection_id: Optional[uuid.UUID] = None

def __init__(self):
self.session = aiohttp.ClientSession()
Expand Down

0 comments on commit 8912fc2

Please sign in to comment.