Skip to content

Commit f249766

Browse files
Merge pull request #2587 from VWS-Python/dependabot/pip/pyright-1.1.399
Bump pyright from 1.1.398 to 1.1.399
2 parents 07272cb + e7a29c8 commit f249766

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ optional-dependencies.dev = [
7171
"pylint==3.3.6",
7272
"pylint-per-file-ignores==1.4.0",
7373
"pyproject-fmt==2.5.1",
74-
"pyright==1.1.398",
74+
"pyright==1.1.399",
7575
"pyroma==4.2",
7676
"pytest==8.3.5",
7777
"pytest-cov==6.1.1",

src/mock_vws/database.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class VuforiaDatabase:
6767
# ``frozen=True`` while still being able to keep the interface we want.
6868
# In particular, we might want to inspect the ``database`` object's targets
6969
# as they change via API requests.
70-
targets: set[Target] = field(default_factory=set, hash=False)
70+
targets: set[Target] = field(default_factory=set[Target], hash=False)
7171
state: States = States.WORKING
7272

7373
request_quota: int = 100000

0 commit comments

Comments
 (0)