Skip to content
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
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,6 @@ filterwarnings = [
'ignore:open_binary is deprecated:DeprecationWarning', # pyvisa-sim deprecated in 3.11 un-deprecated in 3.12. Drop filter once we drop support for 3.11
'ignore:unclosed database in:ResourceWarning', # internal should be fixed
'ignore:unclosed\ <socket\.socket:ResourceWarning', # not clear from where this is coming
"ignore:'asyncio.iscoroutinefunction' is deprecated and slated for removal:DeprecationWarning", # opentelemetry
'ignore:Model_336 is deprecated:qcodes.utils.deprecate.QCoDeSDeprecationWarning', # remove once deprecated Lakeshore Model_336 and its tests has been removed
]

Expand Down
3 changes: 1 addition & 2 deletions src/qcodes/utils/function_helpers.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from asyncio import iscoroutinefunction
from inspect import signature
from inspect import iscoroutinefunction, signature


def is_function(f: object, arg_count: int, coroutine: bool = False) -> bool:
Expand Down
Loading