Skip to content

Commit

Permalink
Fix whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
benfitzpatrick committed Nov 2, 2017
1 parent 0a1c0d8 commit da763a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion isodatetime/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -1325,7 +1325,7 @@ def __cmp__(self, other):
def __sub__(self, other):
if isinstance(other, TimePoint):
if other > self:
return -1* (other - self)
return -1 * (other - self)
other = other.copy()
other.set_time_zone(self.get_time_zone())
my_year, my_day_of_year = self.get_ordinal_date()
Expand Down

0 comments on commit da763a5

Please sign in to comment.