Skip to content

Commit

Permalink
Fixes to format.
Browse files Browse the repository at this point in the history
  • Loading branch information
teleyinex committed Mar 16, 2019
1 parent fc69425 commit 531159d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pybossa/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ def get_periodic_jobs(queue):
autoimport_jobs = get_autoimport_jobs() if queue == 'low' else []
# User engagement jobs
engage_jobs = get_inactive_users_jobs() if queue == 'quaterly' else []
warning_jobs = get_notify_inactive_accounts() if queue == 'low'
delete_account_jobs = get_delete_inactive_accounts() if queue == 'monthly'
warning_jobs = get_notify_inactive_accounts() if queue == 'low' else []
delete_account_jobs = get_delete_inactive_accounts() if queue == 'monthly' else []
non_contrib_jobs = get_non_contributors_users_jobs() \
if queue == 'quaterly' else []
dashboard_jobs = get_dashboard_jobs() if queue == 'low' else []
Expand Down

0 comments on commit 531159d

Please sign in to comment.