Skip to content

Commit

Permalink
Remove redundant commas
Browse files Browse the repository at this point in the history
Tried black version 21.7b0 on the original, and it wanted to add
even more brackets/commas.

Both black version 19.10b0 (currently version used in pre-commit)
and version 21.7b0 (latest release) like this simpler version.
  • Loading branch information
peterjc committed Aug 27, 2021
1 parent 508eefa commit 9bd28ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Bio/Graphics/GenomeDiagram/_CircularDrawer.py
Expand Up @@ -594,7 +594,7 @@ def draw_line_graph(self, graph):
strokeWidth=graph.linewidth,
)
)
lastx, lasty, = x, y
lastx, lasty = x, y
return line_elements

def draw_bar_graph(self, graph):
Expand Down

0 comments on commit 9bd28ed

Please sign in to comment.