From bc95ce6193b29bed92e3083d9659996a19447a5e Mon Sep 17 00:00:00 2001 From: Peter C Date: Mon, 30 Sep 2024 15:16:40 -0700 Subject: [PATCH] Update landtrendr.py --- src/ltgee/landtrendr.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ltgee/landtrendr.py b/src/ltgee/landtrendr.py index 2d5c86e..7672110 100644 --- a/src/ltgee/landtrendr.py +++ b/src/ltgee/landtrendr.py @@ -228,8 +228,7 @@ def index(self): @index.setter def index(self, index: str): assert index in self._valid_indices or index in self._valid_indices_alt, \ - f"Index must be one of {self._valid_indices} or { - self._valid_indices_alt}" + f"Index must be one of {self._valid_indices} or {self._valid_indices_alt}" self._index = index @property