From 24114ba631e12d384acee80e428753ce5c0ea310 Mon Sep 17 00:00:00 2001 From: Dave Halter Date: Fri, 14 Feb 2020 23:56:11 +0100 Subject: [PATCH] Remove reorder imports. For now this is not a priority --- jedi/api/__init__.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/jedi/api/__init__.py b/jedi/api/__init__.py index bc3904f7..916487d6 100644 --- a/jedi/api/__init__.py +++ b/jedi/api/__init__.py @@ -580,12 +580,6 @@ class Script(object): names = [d._name for d in self.get_references(line, column, include_builtins=True)] return refactoring.inline(self._grammar, names) - @no_py2_support - def reorder_imports(self): - """ - """ - raise NotImplementedError - class Interpreter(Script): """