Skip to content

Commit

Permalink
Add data param to extract
Browse files Browse the repository at this point in the history
  • Loading branch information
yasyf committed Sep 13, 2014
1 parent d1a4f5c commit 2121142
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion extractors/base_extractor.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class BaseExtractor(object):
"""

@staticmethod
def extract():
def extract(data):
"""
Examine email content and metadata to extract information.
Expand Down
2 changes: 1 addition & 1 deletion extractors/date_and_time_extractor.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
def DateAndTimeExtractor(BaseExtractor):
@staticmethod
def extract():
def extract(data):
pass

0 comments on commit 2121142

Please sign in to comment.