Skip to content

Commit bd9342d

Browse files
authored
no-issue: remove unused import from test_graphlib.py (GH-29853)
1 parent 734ed35 commit bd9342d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Lib/test/test_graphlib.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
from itertools import chain
21
import graphlib
32
import os
43
import unittest
@@ -34,7 +33,7 @@ def _assert_cycle(self, graph, cycle):
3433
try:
3534
ts.prepare()
3635
except graphlib.CycleError as e:
37-
msg, seq = e.args
36+
_, seq = e.args
3837
self.assertIn(" ".join(map(str, cycle)), " ".join(map(str, seq * 2)))
3938
else:
4039
raise

0 commit comments

Comments
 (0)