File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ def activate(configuration: dict) -> LoggingIncrementer:
80
80
for level , verbosity_def in enumerate (logconfig .get ("verbose" , [])):
81
81
if not isinstance (verbosity_def , dict ):
82
82
raise zocalo .ConfigurationError (
83
- f"Logging configuration error: verbosity level { level + 1 } definition "
83
+ f"Logging configuration error: verbosity level { level + 1 } definition "
84
84
"is not a dictionary"
85
85
)
86
86
verbosity_def .setdefault ("version" , logconfig ["version" ])
@@ -89,7 +89,7 @@ def activate(configuration: dict) -> LoggingIncrementer:
89
89
verbosity_def
90
90
):
91
91
raise zocalo .ConfigurationError (
92
- f"Logging configuration error: verbosity level { level + 1 } definition "
92
+ f"Logging configuration error: verbosity level { level + 1 } definition "
93
93
"defines items not allowed in an incremental definition"
94
94
)
95
95
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ def test_configuration_can_specify_a_missing_resolution_file(tmp_path):
270
270
f"""
271
271
version: 1
272
272
unused-plugin:
273
- { tmp_path / ' missing_file' }
273
+ { tmp_path / " missing_file" }
274
274
"""
275
275
)
276
276
@@ -320,7 +320,7 @@ def test_plugins_can_be_configured_in_an_external_file(tmp_path):
320
320
f"""
321
321
version: 1
322
322
external:
323
- { tmp_path / ' external.yml' }
323
+ { tmp_path / " external.yml" }
324
324
environments:
325
325
ext:
326
326
- external
You can’t perform that action at this time.
0 commit comments