Skip to content

Commit

Permalink
fixed - E226 missing whitespace around arithmetic operator
Browse files Browse the repository at this point in the history
  • Loading branch information
Aymaru authored and amotl committed Jul 18, 2022
1 parent f2b15eb commit 024967a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crate/client/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def _transform_date_columns(row, gen_flags):
if value < 0:
yield None
else:
value = datetime.fromtimestamp(value/1000)
value = datetime.fromtimestamp(value / 1000)
yield value

def executemany(self, sql, seq_of_parameters):
Expand Down

0 comments on commit 024967a

Please sign in to comment.