Skip to content

Commit

Permalink
ignore typing issue found by fixing broken import
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Jun 13, 2022
1 parent 596dc59 commit 40e0a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qcodes/tests/drivers/test_lakeshore.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class MockVisaInstrument:
"""
def __init__(self, *args, **kwargs) -> None:
super().__init__(*args, **kwargs)
self.visa_log = get_instrument_logger(self, VISA_LOGGER)
self.visa_log = get_instrument_logger(self, VISA_LOGGER) # type: ignore[arg-type]

# This base class mixin holds two dictionaries associated with the
# pyvisa_instrument.write()
Expand Down

0 comments on commit 40e0a62

Please sign in to comment.