Skip to content

Commit

Permalink
Fix for Live 11.1: __init__ takes just 1 argument
Browse files Browse the repository at this point in the history
  • Loading branch information
samsta committed Apr 30, 2022
1 parent a552306 commit 372180c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xone.py
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ class XoneK2_DJ(ControlSurface):
def __init__(self, instance):
global g_logger
g_logger = self.log_message
super(XoneK2_DJ, self).__init__(instance, False)
super(XoneK2_DJ, self).__init__(instance)
self.tracks_with_listener = []
self.slots_with_listener = []
self.clips_with_listener = []
Expand Down

0 comments on commit 372180c

Please sign in to comment.