Skip to content

Commit 67dd43e

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 7852e3c commit 67dd43e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tikzplotlib/_patch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def _patch_legend(obj, draw_options, legend_type):
6464
def zip_modulo(*seqs):
6565
n = max(len(seq) for seq in seqs)
6666
for i in range(n):
67-
yield tuple((seq[i % len(seq)] if len(seq)!=0 else None) for seq in seqs)
67+
yield tuple((seq[i % len(seq)] if len(seq) != 0 else None) for seq in seqs)
6868

6969

7070
def draw_patchcollection(data, obj):

0 commit comments

Comments
 (0)