mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 00:14:41 +01:00
refactoring: move pretty to lib (#5551)
#5538 ## For community ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment** --------- Co-authored-by: a <1@1.1> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
This commit is contained in:
parent
b9998ac5be
commit
d7ca254ae3
3 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ import re
|
|||
|
||||
import pytest
|
||||
|
||||
from xonsh import pretty
|
||||
from xonsh.lib import pretty
|
||||
|
||||
long_list = ["str"] * 30
|
||||
long_list_exp = "[" + (",\n ".join(["'str'"] * 30) + "]")
|
|
@ -20,8 +20,8 @@ from xonsh.imphooks import install_import_hooks
|
|||
from xonsh.jobs import ignore_sigtstp
|
||||
from xonsh.lazyasd import lazyobject
|
||||
from xonsh.lazyimps import pyghooks, pygments
|
||||
from xonsh.lib.pretty import pretty
|
||||
from xonsh.platform import HAS_PYGMENTS, ON_WINDOWS
|
||||
from xonsh.pretty import pretty
|
||||
from xonsh.shell import Shell
|
||||
from xonsh.timings import setup_timings
|
||||
from xonsh.tools import (
|
||||
|
|
Loading…
Add table
Reference in a new issue