Skip to content

Commit

Permalink
Pass args to parent method
Browse files Browse the repository at this point in the history
  • Loading branch information
amercader committed Jul 17, 2024
1 parent 5c16466 commit 14aa5e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ckanext/archiver/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ class TestIPipePlugin(p.SingletonPlugin):
p.implements(IPipe, inherit=True)

def __init__(self, *args, **kwargs):
super().__init__()
super().__init__(*args, **kwargs)
self.calls = []

def reset(self):
Expand Down

0 comments on commit 14aa5e8

Please sign in to comment.