mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00
Better import
This commit is contained in:
parent
1c3a59d181
commit
d3bb55de14
2 changed files with 1 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue