Skip to content

Commit

Permalink
Removing the call to super().__init__(**kwargs) from the
Browse files Browse the repository at this point in the history
ScpiPsuInterface constructor.
  • Loading branch information
texmexlab committed Sep 14, 2024
1 parent 1e0b56a commit 4d14a27
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion socs/agents/scpi_psu/drivers.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ def __init__(self, ip_address, port, **kwargs):
self.configure()
except ValueError as err:
raise ValueError(err)
super().__init__(**kwargs)

def conn_socket(self):
self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
Expand Down

0 comments on commit 4d14a27

Please sign in to comment.