Skip to content

Commit

Permalink
Flake8 error fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
elcct committed Dec 15, 2017
1 parent 756901e commit f8633bc
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,10 @@ def _should_update(self,
:return: True if investment project needs to be updated
"""
return (
investment_project.referral_source_activity_id != referral_source_activity.id or
investment_project.referral_source_activity_website_id != referral_source_activity_website.id
investment_project.referral_source_activity_id !=
referral_source_activity.id or
investment_project.referral_source_activity_website_id !=
referral_source_activity_website.id
)

def _process_row(self, row, simulate=False, **options):
Expand Down

0 comments on commit f8633bc

Please sign in to comment.