From 9954c6d79062975f85d1754020118802dce057d1 Mon Sep 17 00:00:00 2001 From: Mark Piper Date: Fri, 9 Aug 2024 17:12:31 -0600 Subject: [PATCH] Make pretty --- bmi_topography/topography.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bmi_topography/topography.py b/bmi_topography/topography.py index 7cb1665..6106074 100644 --- a/bmi_topography/topography.py +++ b/bmi_topography/topography.py @@ -64,9 +64,7 @@ def __init__( if dem_type in Topography.VALID_DEM_TYPES: self._dem_type = dem_type else: - raise ValueError( - f"dem_type must be one of {Topography.VALID_DEM_TYPES}." - ) + raise ValueError(f"dem_type must be one of {Topography.VALID_DEM_TYPES}.") if output_format in Topography.VALID_OUTPUT_FORMATS.keys(): self._output_format = output_format