From 03ba3e048c1c0d39eec239bbf7a87e079bda4702 Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Fri, 9 Aug 2024 20:16:47 -0600 Subject: [PATCH] Use single quotes inside double quotes --- bmi_topography/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bmi_topography/cli.py b/bmi_topography/cli.py index e6da5e4..f32da4c 100644 --- a/bmi_topography/cli.py +++ b/bmi_topography/cli.py @@ -78,7 +78,7 @@ def main(quiet, dem_type, south, north, west, east, output_format, api_key, no_f path_to_dem = topo.fetch() if not quiet: click.secho( - f"File downloaded to {getattr(topo, "cache_dir")}", + f"File downloaded to {getattr(topo, 'cache_dir')}", fg="green", err=True, )