From 33d314f3e600aee5f480ebdd2aa4e78bcc5ac865 Mon Sep 17 00:00:00 2001 From: Augie Fackler Date: Tue, 22 Aug 2017 14:14:34 -0400 Subject: [PATCH] demandimportpy3: update to pass import checker --- hgdemandimport/demandimportpy3.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hgdemandimport/demandimportpy3.py b/hgdemandimport/demandimportpy3.py index c79584181c..e2ea27fa0f 100644 --- a/hgdemandimport/demandimportpy3.py +++ b/hgdemandimport/demandimportpy3.py @@ -27,11 +27,10 @@ This also has some limitations compared to the Python 2 implementation: from __future__ import absolute_import import contextlib -import sys - import importlib.abc import importlib.machinery import importlib.util +import sys _deactivated = False