Skip to content

Commit

Permalink
fix: missing input args
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieboldianus committed May 27, 2019
1 parent b7265d6 commit f0c3337
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lbsntransform/classes/field_mapping_flickr.py
Expand Up @@ -38,7 +38,8 @@ def __init__(self,
map_full_relations=False,
map_reactions=True,
ignore_non_geotagged=False,
ignore_sources_set=set()):
ignore_sources_set=set(),
min_geoaccuracy=None):
# We're dealing with Flickr in this class, lets create the OriginID
# globally
# this OriginID is required for all CompositeKeys
Expand All @@ -50,6 +51,7 @@ def __init__(self,
self.lbsn_records = LBSNRecordDicts()
self.log = logging.getLogger('__main__') # get the main logger object
self.skipped_count = 0
self.skipped_low_geoaccuracy = 0
# self.disableReactionPostReferencing = disableReactionPostReferencing
# self.mapFullRelations = mapFullRelations
# self.geocodes = geocodes
Expand Down

0 comments on commit f0c3337

Please sign in to comment.