Skip to content

Commit

Permalink
Make flake8 happy
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertoPrevato committed Dec 24, 2023
1 parent 7d4bcd7 commit 2b7a5e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ per-file-ignores =
tests/test_timeline.py:E501
tests/test_cards.py:E501
tests/test_gantt.py:E501
exclude =
venv
dist
2 changes: 1 addition & 1 deletion neoteroi/mkdocs/projects/gantt/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def build_event(self, parent, event: Event):
{
"class": "nt-timeline-dot bigger",
"title": f"{event.title} {self._format_time(event.time)}",
"style": f"left: {self._calc_time_left(event.time)-4}px;"
"style": f"left: {self._calc_time_left(event.time) - 4}px;"
if event.time
else "",
},
Expand Down

0 comments on commit 2b7a5e1

Please sign in to comment.