Skip to content

Commit 0c9aa64

Browse files
authored
Merge pull request #986 from rehanxt5/GH985-fix-stray-f-in-error-messages
Fix stray f in error message f-strings (closes #985)
2 parents 5999f49 + 44e3855 commit 0c9aa64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

malariagen_data/anoph/cnv_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def open_cnv_coverage_calls(
296296
marker = path + "/.zmetadata"
297297
if not self._fs.exists(marker):
298298
raise ValueError(
299-
f"CNV coverage calls analysis f{analysis!r} not implemented for sample set {sample_set!r}"
299+
f"CNV coverage calls analysis {analysis!r} not implemented for sample set {sample_set!r}"
300300
)
301301
store = _init_zarr_store(fs=self._fs, path=path)
302302
root = zarr.open_consolidated(store=store)

0 commit comments

Comments
 (0)