Skip to content

Commit 6565f07

Browse files
committed
fix: fix ai comments
1 parent deb986a commit 6565f07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

qdrant_client/async_qdrant_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2064,7 +2064,7 @@ async def recover_snapshot(
20642064
location: str,
20652065
api_key: str | None = None,
20662066
checksum: str | None = None,
2067-
priority: types.SnapshotPriority = None,
2067+
priority: types.SnapshotPriority | None = None,
20682068
wait: bool = True,
20692069
**kwargs: Any,
20702070
) -> bool | None:

qdrant_client/qdrant_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2149,7 +2149,7 @@ def recover_snapshot(
21492149
location: str,
21502150
api_key: str | None = None,
21512151
checksum: str | None = None,
2152-
priority: types.SnapshotPriority = None,
2152+
priority: types.SnapshotPriority | None = None,
21532153
wait: bool = True,
21542154
**kwargs: Any,
21552155
) -> bool | None:

0 commit comments

Comments
 (0)