Skip to content

Commit 4bff241

Browse files
committed
Bump flake8, black
1 parent d557fbf commit 4bff241

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
black==19.3b0
2-
flake8==3.7.7
1+
black==19.10b0
2+
flake8==3.7.9

storing-images/storing_images.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,9 +291,9 @@ def plot_with_legend(
291291
all_plots = []
292292
for data, label in zip(y_data, legend_labels):
293293
if log:
294-
temp, = plt.loglog(x_range, data, label=label)
294+
(temp,) = plt.loglog(x_range, data, label=label)
295295
else:
296-
temp, = plt.plot(x_range, data, label=label)
296+
(temp,) = plt.plot(x_range, data, label=label)
297297
all_plots.append(temp)
298298

299299
plt.title(title)

0 commit comments

Comments
 (0)