From cb0007c77ded8c0790c689029df11c10efe1beb2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 26 Jun 2023 01:57:05 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- tests/test_modutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_modutils.py b/tests/test_modutils.py index f2f2c960c0..26618c7ec3 100644 --- a/tests/test_modutils.py +++ b/tests/test_modutils.py @@ -270,7 +270,7 @@ def test_std_lib(self) -> None: def test_std_lib_found_before_same_named_package_on_path(self) -> None: realpath = str(resources.RESOURCE_PATH) - realpath_slashes = realpath.replace('\\', '\\\\') + realpath_slashes = realpath.replace("\\", "\\\\") if WIN32: raise AssertionError(realpath + realpath_slashes) sys.path.insert(0, realpath)