From f5c8d689bb93a31b498c889ac8ad059c3568baff Mon Sep 17 00:00:00 2001 From: John SJ Anderson Date: Wed, 28 Aug 2024 15:39:04 -0700 Subject: [PATCH] No benefit to a raw docstring --- ingest/rules/curate.smk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ingest/rules/curate.smk b/ingest/rules/curate.smk index 1d9916e..f471944 100644 --- a/ingest/rules/curate.smk +++ b/ingest/rules/curate.smk @@ -47,7 +47,7 @@ rule concat_geolocation_rules: def format_field_map(field_map: dict[str, str]) -> str: - r""" + """ Format dict to `"key1"="value1" "key2"="value2"...` for use in shell commands. """ return " ".join([f'"{key}"="{value}"' for key, value in field_map.items()])