Skip to content

Commit e7af5c9

Browse files
flake8
1 parent c578d8c commit e7af5c9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

lib/matplotlib/tests/test_backend_tk.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ def target():
7575
plt.close()
7676
if show_finished_event.wait():
7777
print('success')
78-
78+
7979
show_finished_event = threading.Event()
8080
thread = threading.Thread(target=target, daemon=True)
8181
thread.start()
@@ -87,7 +87,9 @@ def target():
8787
try:
8888
proc = subprocess.run(
8989
[sys.executable, "-c", script],
90-
env={**os.environ, "MPLBACKEND": "TkAgg", "SOURCE_DATE_EPOCH": "0"},
90+
env={**os.environ,
91+
"MPLBACKEND": "TkAgg",
92+
"SOURCE_DATE_EPOCH": "0"},
9193
timeout=10,
9294
stdout=subprocess.PIPE,
9395
universal_newlines=True,

0 commit comments

Comments
 (0)