Skip to content

Commit a204769

Browse files
committed
Fix errors
1 parent 33bd9ba commit a204769

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/onepassword/core.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
from __future__ import annotations
12
import json
23
import platform
3-
from typing import Protocol
4+
from typing import Any, Protocol
45
from onepassword.desktop_core import DesktopCore
56
from onepassword.errors import raise_typed_exception, DesktopSessionExpired
67

@@ -20,7 +21,7 @@ def release_client(self, client_id: int) -> None: ...
2021
class InnerClient:
2122
client_id: int
2223
core: DesktopCore | UniffiCore
23-
config: dict[str, any]
24+
config: dict[str, Any]
2425

2526
def __init__(self, client_id: int, core: "DesktopCore | UniffiCore", config: dict[str, any]):
2627
self.client_id = client_id

0 commit comments

Comments
 (0)