Skip to content

Commit

Permalink
Add kwargs to Keithley2306 Step initialiser
Browse files Browse the repository at this point in the history
  • Loading branch information
bilderbuchi committed Jul 23, 2023
1 parent e88b0a5 commit b726aa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymeasure/instruments/keithley/keithley2306.py
Original file line number Diff line number Diff line change
Expand Up @@ -551,8 +551,8 @@ class Step(Channel):
values=[0, 5],
)

def __init__(self, instrument, number):
super().__init__(instrument, number)
def __init__(self, instrument, number, **kwargs):
super().__init__(instrument, number, **kwargs)


class Relay(Channel):
Expand Down

0 comments on commit b726aa9

Please sign in to comment.