From dce839521470e65d816b829ee438797b9d881271 Mon Sep 17 00:00:00 2001 From: Purnendu Chakraborty Date: Wed, 8 May 2024 12:02:31 -0400 Subject: [PATCH] Formatted using black --- src/mepo/utilities/chdir.py | 1 + tests/test_mepo_commands.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/mepo/utilities/chdir.py b/src/mepo/utilities/chdir.py index a1ab48a..1b8922d 100644 --- a/src/mepo/utilities/chdir.py +++ b/src/mepo/utilities/chdir.py @@ -1,4 +1,5 @@ """contextlib.chdir was introduced in Python 3.11""" + import os from contextlib import contextmanager diff --git a/tests/test_mepo_commands.py b/tests/test_mepo_commands.py index 4721389..bb5b8ad 100644 --- a/tests/test_mepo_commands.py +++ b/tests/test_mepo_commands.py @@ -27,6 +27,7 @@ import mepo.command.diff as mepo_diff import mepo.command.whereis as mepo_whereis import mepo.command.reset as mepo_reset + # Import commands with dash in the name mepo_restore_state = importlib.import_module("mepo.command.restore-state") mepo_checkout_if_exists = importlib.import_module("mepo.command.checkout-if-exists") @@ -34,6 +35,7 @@ TEST_DIR = os.path.dirname(os.path.realpath(__file__)) + class TestMepoCommands(unittest.TestCase): @classmethod