From 21ce490376c11941f42260f2ad690669c133caaa Mon Sep 17 00:00:00 2001 From: Andy Kipp Date: Sat, 29 Jun 2024 02:46:38 +0200 Subject: [PATCH] refactoring: move diff hist (#5554) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #5538 ## For community ⬇️ **Please click the 👍 reaction instead of leaving a `+1` or 👍 comment** Co-authored-by: a <1@1.1> --- xonsh/{ => history}/diff_history.py | 0 xonsh/history/main.py | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename xonsh/{ => history}/diff_history.py (100%) diff --git a/xonsh/diff_history.py b/xonsh/history/diff_history.py similarity index 100% rename from xonsh/diff_history.py rename to xonsh/history/diff_history.py diff --git a/xonsh/history/main.py b/xonsh/history/main.py index d40ec821a..30fd193d2 100644 --- a/xonsh/history/main.py +++ b/xonsh/history/main.py @@ -9,7 +9,7 @@ import threading import typing as tp import xonsh.cli_utils as xcli -import xonsh.diff_history as xdh +import xonsh.history.diff_history as xdh import xonsh.tools as xt from xonsh.built_ins import XSH from xonsh.history.base import History