Skip to content

Commit

Permalink
Remove typing stubs
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Mar 6, 2025
1 parent 5c917b2 commit 1d0c282
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,3 @@
path = tests/dataset/fixtures/db_files
url = https://github.com/QCoDeS/qcodes_db_fixtures.git
branch = main
[submodule "typings"]
path = typings
url = https://github.com/QCoDeS/qcodes-python-type-stubs.git
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,6 @@ ignore = [
]
reportMissingTypeStubs = true
reportDeprecated = true
stubPath = "typings/stubs"

typeCheckingMode = "standard"

Expand Down
4 changes: 3 additions & 1 deletion src/qcodes/instrument_drivers/Minicircuits/USBHIDMixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
from qcodes.utils import QCoDeSDeprecationWarning

try:
from pywinusb import hid # pyright: ignore[reportMissingModuleSource]
from pywinusb import ( # pyright: ignore[reportMissingModuleSource,reportMissingImports]
hid,
)

imported_hid = True
except ImportError:
Expand Down
1 change: 0 additions & 1 deletion typings
Submodule typings deleted from ef0939

0 comments on commit 1d0c282

Please sign in to comment.