From 11ad4bb7ee3e594c4079b9a15f9b538bab6cbd4c Mon Sep 17 00:00:00 2001 From: Adrian Garcia Badaracco <1755071+adriangb@users.noreply.github.com> Date: Mon, 29 Nov 2021 11:22:01 -0800 Subject: [PATCH] chore: remove unused import from test_graphlib.py --- Lib/test/test_graphlib.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Lib/test/test_graphlib.py b/Lib/test/test_graphlib.py index 86246a62ed6422..5f38af4024c5b0 100644 --- a/Lib/test/test_graphlib.py +++ b/Lib/test/test_graphlib.py @@ -1,4 +1,3 @@ -from itertools import chain import graphlib import os import unittest @@ -34,7 +33,7 @@ def _assert_cycle(self, graph, cycle): try: ts.prepare() except graphlib.CycleError as e: - msg, seq = e.args + _, seq = e.args self.assertIn(" ".join(map(str, cycle)), " ".join(map(str, seq * 2))) else: raise