Skip to content

Commit

Permalink
Fix typing annotation for tokens attribute in Auth class
Browse files Browse the repository at this point in the history
  • Loading branch information
magico13 committed Apr 13, 2024
1 parent bfbb060 commit 9391fcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyemvue/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(
self.initial_retry_delay = max(initial_retry_delay, 0.5)
self.max_retry_delay = max(max_retry_delay, 0)
self.pool_wellknown_jwks = None
self.tokens = tokens or {}
self.tokens: dict[str, str] = {}

self._password = None

Expand Down

0 comments on commit 9391fcc

Please sign in to comment.