Skip to content

Commit 1b72368

Browse files
BaseProcessor: add missing 'self'
1 parent b9fc02d commit 1b72368

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/satosa/micro_services/processors/base_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ class BaseProcessor(object):
22
def __init__(self):
33
pass
44

5-
def process(internal_data, attribute, **kwargs):
5+
def process(self, internal_data, attribute, **kwargs):
66
pass

0 commit comments

Comments
 (0)