Skip to content
Snippets Groups Projects
Commit 149ec6f0 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

add args and kwargs

parent 62dbb244
No related branches found
No related tags found
No related merge requests found
......@@ -12,7 +12,7 @@ class PostProcessABC(ProcessABC):
"""
def __init__(self, *args, **kwargs):
super().__init__()
super().__init__(*args, **kwargs)
@classmethod
def as_function(cls, data, *args, **kwargs):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment