From e3bc51cbd66784db31a9908c4c9edbfd25804266 Mon Sep 17 00:00:00 2001 From: Sam Arbid Date: Tue, 26 Nov 2024 13:21:33 +0100 Subject: [PATCH] fix: black format --- tests/test_invenio_config.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/test_invenio_config.py b/tests/test_invenio_config.py index 313931e..4461648 100644 --- a/tests/test_invenio_config.py +++ b/tests/test_invenio_config.py @@ -177,9 +177,9 @@ def test_env(): os.environ["MYPREFIX_TESTVAR"] = "True" os.environ["MYPREFIX_JUSTASTRING"] = "This is just a string" - os.environ[ - "MYPREFIX_COMPLEX_DICT" - ] = "{'complex': {'python': 'dict'}, 'with': ['list', 'and', 1234]}" + os.environ["MYPREFIX_COMPLEX_DICT"] = ( + "{'complex': {'python': 'dict'}, 'with': ['list', 'and', 1234]}" + ) InvenioConfigEnvironment(app, prefix="MYPREFIX_") assert app.config.get("TESTVAR") is True assert app.config.get("JUSTASTRING") == "This is just a string"