Skip to content

Commit

Permalink
debug reraise error
Browse files Browse the repository at this point in the history
  • Loading branch information
jenshnielsen committed Mar 4, 2024
1 parent 9c14b23 commit fff34e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/qcodes/utils/function_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,6 @@ def is_function(f: object, arg_count: int, coroutine: bool = False) -> bool:
inputs = [0] * arg_count
sig.bind(*inputs)
return True
except TypeError:
except TypeError as e:
raise e
return False

0 comments on commit fff34e8

Please sign in to comment.