refactoring: move jsonutils to lib (#5548)

https://github.com/xonsh/xonsh/issues/5538

## For community
⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍
comment**

Co-authored-by: a <1@1.1>
This commit is contained in:
Andy Kipp 2024-06-29 00:46:04 +02:00 committed by GitHub
parent fa254914d7
commit b9998ac5be
Failed to generate hash of commit
4 changed files with 2 additions and 3 deletions

View file

@ -58,7 +58,6 @@ For those of you who want the gritty details.
xonsh.lib
xonsh.tools
xonsh.platform
xonsh.jsonutils
xonsh.lazyjson
xonsh.lazyasd
xonsh.openpy

View file

@ -4,7 +4,7 @@ import json
import pytest
from xonsh.jsonutils import serialize_xonsh_json
from xonsh.lib.jsonutils import serialize_xonsh_json
from xonsh.tools import EnvPath

View file

@ -11,7 +11,7 @@ import textwrap
import typing as tp
from xonsh.built_ins import XSH
from xonsh.jsonutils import serialize_xonsh_json
from xonsh.lib.jsonutils import serialize_xonsh_json
from xonsh.tools import backup_file, print_color, to_bool, to_bool_or_break