Better import

This commit is contained in:
Burak Yigit Kaya 2016-06-24 20:25:09 +03:00
parent 1c3a59d181
commit d3bb55de14
2 changed files with 1 additions and 3 deletions

View file

@ -9,7 +9,6 @@ import builtins
from collections import Sequence
from contextlib import contextmanager
import inspect
from glob import iglob
import os
import re
import shlex
@ -21,7 +20,6 @@ import time
from xonsh.lazyasd import LazyObject
from xonsh.history import History
from xonsh.tokenize import SearchPath
from xonsh.inspectors import Inspector
from xonsh.aliases import Aliases, make_default_aliases
from xonsh.environ import Env, default_env, locate_binary

View file

@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
import builtins
import os
from collections import abc as abc
import collections.abc as abc
from xonsh.dirstack import _get_cwd
from xonsh.platform import ON_WINDOWS