Skip to content

Commit

Permalink
Fix flake8 E203
Browse files Browse the repository at this point in the history
  • Loading branch information
adsharma committed May 5, 2024
1 parent 4a20749 commit 0064bce
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion fquery/query.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ def __init__(
self._to_json = False

def __str__(self) -> str:
query_name = str(self.OP)[len("QueryableOp."):]
# black and flake8 don't agree on formatting the next line
query_name = str(self.OP)[len("QueryableOp.") :] # noqa: E203
if self.OP == QueryableOp.LEAF:
return f"{query_name} ({self.__class__.__name__})"
else:
Expand Down

0 comments on commit 0064bce

Please sign in to comment.