Skip to content

Commit

Permalink
fixup! fixup! Adapt module to v13.0 and new usage
Browse files Browse the repository at this point in the history
  • Loading branch information
grindtildeath committed Apr 1, 2020
1 parent 09206fb commit ccab50e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base_time_window/models/time_window_mixin.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def float_to_time(self, value):
return time(hour=hour, minute=minute)

def get_start_time(self):
self.float_to_time(self.start)
return self.float_to_time(self.start)

def get_end_time(self):
self.float_to_time(self.end)
return self.float_to_time(self.end)

0 comments on commit ccab50e

Please sign in to comment.