From 89f1a6fa3a73297da5c9e7c53a395fad3de85e3f Mon Sep 17 00:00:00 2001 From: Damien Baty Date: Mon, 6 Jul 2020 00:01:50 +0200 Subject: Switch to isort 5 for pylint's own code --- pylint/graph.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'pylint/graph.py') diff --git a/pylint/graph.py b/pylint/graph.py index 823713e61..219d0b392 100644 --- a/pylint/graph.py +++ b/pylint/graph.py @@ -13,13 +13,12 @@ (dot generation adapted from pypy/translator/tool/make_dot.py) """ - import codecs import os -import os.path as osp import subprocess import sys import tempfile +from os import path as osp def target_info_from_filename(filename): -- cgit v1.2.1