Skip to content

Commit e3bc51c

Browse files
committed
fix: black format
1 parent 36bec82 commit e3bc51c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/test_invenio_config.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,9 @@ def test_env():
177177

178178
os.environ["MYPREFIX_TESTVAR"] = "True"
179179
os.environ["MYPREFIX_JUSTASTRING"] = "This is just a string"
180-
os.environ[
181-
"MYPREFIX_COMPLEX_DICT"
182-
] = "{'complex': {'python': 'dict'}, 'with': ['list', 'and', 1234]}"
180+
os.environ["MYPREFIX_COMPLEX_DICT"] = (
181+
"{'complex': {'python': 'dict'}, 'with': ['list', 'and', 1234]}"
182+
)
183183
InvenioConfigEnvironment(app, prefix="MYPREFIX_")
184184
assert app.config.get("TESTVAR") is True
185185
assert app.config.get("JUSTASTRING") == "This is just a string"

0 commit comments

Comments
 (0)