Skip to content

Commit

Permalink
connector: Merge pull request #1194 from genesiscloud/cn-proc-bind-kw…
Browse files Browse the repository at this point in the history
…args

connector.cn_proc: support kwargs for bind

Bug-Url: #1194
  • Loading branch information
svinota authored Aug 15, 2024
2 parents 1f60be2 + aa27b29 commit 01f92c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyroute2/netlink/connector/cn_proc.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ def __init__(self, fileno=None):
super().__init__(fileno=fileno)
self.marshal = ProcEventMarshal()

def bind(self):
return super().bind(groups=CN_IDX_PROC)
def bind(self, **kwarg):
return super().bind(groups=CN_IDX_PROC, **kwarg)

def control(self, listen):
msg = proc_event_control()
Expand Down

0 comments on commit 01f92c8

Please sign in to comment.