We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 07272cb + e7a29c8 commit f249766Copy full SHA for f249766
2 files changed
pyproject.toml
@@ -71,7 +71,7 @@ optional-dependencies.dev = [
71
"pylint==3.3.6",
72
"pylint-per-file-ignores==1.4.0",
73
"pyproject-fmt==2.5.1",
74
- "pyright==1.1.398",
+ "pyright==1.1.399",
75
"pyroma==4.2",
76
"pytest==8.3.5",
77
"pytest-cov==6.1.1",
src/mock_vws/database.py
@@ -67,7 +67,7 @@ class VuforiaDatabase:
67
# ``frozen=True`` while still being able to keep the interface we want.
68
# In particular, we might want to inspect the ``database`` object's targets
69
# as they change via API requests.
70
- targets: set[Target] = field(default_factory=set, hash=False)
+ targets: set[Target] = field(default_factory=set[Target], hash=False)
state: States = States.WORKING
request_quota: int = 100000
0 commit comments