Skip to content

Commit

Permalink
Fix super base class
Browse files Browse the repository at this point in the history
  • Loading branch information
qiluo-msft committed Mar 14, 2017
1 parent 4767929 commit 72497de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sswsdk/dbconnector.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class SonicV1Connector(DBInterface):
def __init__(self, **kwargs):
super(SonicV2Connector, self).__init__(**kwargs)
super(SonicV1Connector, self).__init__(**kwargs)

pass

Expand Down

0 comments on commit 72497de

Please sign in to comment.