Skip to content
This repository was archived by the owner on Apr 19, 2025. It is now read-only.

Commit 8912fc2

Browse files
committed
event stream: use Optional instead of more modern type annotation
Signed-off-by: Sumner Evans <[email protected]>
1 parent 63b4237 commit 8912fc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: linkedin_messaging/linkedin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ class LinkedInMessaging:
133133
]
134134

135135
_realtime_session_id: uuid.UUID
136-
_realtime_connection_id: uuid.UUID | None = None
136+
_realtime_connection_id: Optional[uuid.UUID] = None
137137

138138
def __init__(self):
139139
self.session = aiohttp.ClientSession()

0 commit comments

Comments
 (0)