Skip to content

Commit

Permalink
Refactored phy
Browse files Browse the repository at this point in the history
  • Loading branch information
Ertan Onur authored and Ertan Onur committed Apr 29, 2022
1 parent ae763d1 commit 76e2f8b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def configure(self):
# Callbacks have to be outside since the c library does not like "self"
# Because of this reason will use userdata to get access back to the framer object

def __init__(self, componentname, componentinstancenumber, context=None, configurationparameters=None, num_worker_threads=1, topology=None, framers=None):
def __init__(self, componentname, componentinstancenumber, context=None, configurationparameters=None, num_worker_threads=1, topology=None):
self.framers = framers
super().__init__(componentname, componentinstancenumber, context, configurationparameters, num_worker_threads, topology, framers)
super().__init__(componentname, componentinstancenumber, context, configurationparameters, num_worker_threads, topology, self.framers)

0 comments on commit 76e2f8b

Please sign in to comment.