From 9bd28ed4492202d561bfcb4abab0cda9b7326fa0 Mon Sep 17 00:00:00 2001 From: Peter Cock Date: Fri, 27 Aug 2021 10:05:12 +0100 Subject: [PATCH] Remove redundant commas 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. --- Bio/Graphics/GenomeDiagram/_CircularDrawer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bio/Graphics/GenomeDiagram/_CircularDrawer.py b/Bio/Graphics/GenomeDiagram/_CircularDrawer.py index b090fd9f398..b0f6a530f10 100644 --- a/Bio/Graphics/GenomeDiagram/_CircularDrawer.py +++ b/Bio/Graphics/GenomeDiagram/_CircularDrawer.py @@ -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):