Skip to content

Bump pyright from 1.1.398 to 1.1.399 #2587

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ optional-dependencies.dev = [
"pylint==3.3.6",
"pylint-per-file-ignores==1.4.0",
"pyproject-fmt==2.5.1",
"pyright==1.1.398",
"pyright==1.1.399",
"pyroma==4.2",
"pytest==8.3.5",
"pytest-cov==6.1.1",
Expand Down
2 changes: 1 addition & 1 deletion src/mock_vws/database.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class VuforiaDatabase:
# ``frozen=True`` while still being able to keep the interface we want.
# In particular, we might want to inspect the ``database`` object's targets
# as they change via API requests.
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
Expand Down