Skip to content

Commit

Permalink
Add return type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
thangleiter committed May 17, 2024
1 parent 5cbc8e4 commit be97efe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qcodes/dataset/measurements.py
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ def register_parameter(
return self

@staticmethod
def _check_setpoints_type(arg: setpoints_type, name: str):
def _check_setpoints_type(arg: setpoints_type, name: str) -> None:
if (
not isinstance(arg, Sequence)
or isinstance(arg, str)
Expand Down

0 comments on commit be97efe

Please sign in to comment.