Skip to content
This repository has been archived by the owner on Jan 9, 2024. It is now read-only.

Commit

Permalink
Fixing IntentMapper init signature
Browse files Browse the repository at this point in the history
  • Loading branch information
cchoquette committed Aug 7, 2019
1 parent 6c799cd commit a07f0cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions foreshadow/steps/mapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ class IntentMapper(PreparerStep):
"""

def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
def __init__(self, **kwargs):
super().__init__(**kwargs)

def get_mapping(self, X):
"""Return the mapping of transformations for the CleanerMapper step.
Expand Down

0 comments on commit a07f0cb

Please sign in to comment.