Skip to content
This repository has been archived by the owner on May 26, 2021. It is now read-only.

Commit

Permalink
Fix bad type of default value
Browse files Browse the repository at this point in the history
  • Loading branch information
georgiana-b committed Jul 26, 2016
1 parent d1f93b3 commit 2dc18c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion data_quality/tasks/aggregate.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __init__(self, config, **kwargs):
self.timestamp = datetime.datetime.now(pytz.utc)
self.max_score = 10
self.assess_timeliness = self.config['assess_timeliness']
self.timeliness_period = self.config['timeliness'].get('timeliness_period', '1')
self.timeliness_period = self.config['timeliness'].get('timeliness_period', 1)
required_resources = [self.result_file, self.source_file,
self.publisher_file, self.run_file]
datapackage_check.check_database_completeness(required_resources)
Expand Down

0 comments on commit 2dc18c9

Please sign in to comment.