Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaszurkan-optimizely committed Dec 12, 2019
1 parent 078f6e7 commit c66db1b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion optimizely/event/event_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@ def _run(self):
while True:
if self._get_time() >= self.flushing_interval_deadline:
self._flush_queue()
self.flushing_interval_deadline = self._get_time() + self._get_time(self.flush_interval.total_seconds())
self.flushing_interval_deadline = self._get_time() + \
self._get_time(self.flush_interval.total_seconds())

try:
interval = self._get_time(self.flush_interval.total_seconds()) - self._get_time()
Expand Down

0 comments on commit c66db1b

Please sign in to comment.