Updated super init syntax

This commit is contained in:
jtc42 2019-06-28 13:26:00 +01:00
parent 18f219c8e9
commit 5f4af1e17a

View file

@ -67,7 +67,8 @@ class Sangaboard(ExtensibleSerialInstrument):
you will use to communicate with the motor controller. That's the first argument so you will use to communicate with the motor controller. That's the first argument so
it doesn't need to be named. it doesn't need to be named.
""" """
super(Sangaboard, self).__init__(port, **kwargs) ExtensibleSerialInstrument.__init__(self, port, **kwargs)
try: try:
logging.debug("Running firmware checks") logging.debug("Running firmware checks")
# Request firmware version from the board # Request firmware version from the board