From e9be80ef7d967768955ae643425d4cb82b8134e4 Mon Sep 17 00:00:00 2001 From: Matt Fisher Date: Fri, 23 Aug 2024 11:38:13 -0600 Subject: [PATCH] Remove redundant conditional --- icepyx/core/APIformatting.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/icepyx/core/APIformatting.py b/icepyx/core/APIformatting.py index 90b7f3ac6..8c766dd5a 100644 --- a/icepyx/core/APIformatting.py +++ b/icepyx/core/APIformatting.py @@ -393,8 +393,6 @@ def build_params(self, **kwargs): self._fmted_keys.update({key: kwargs[key]}) except KeyError: self._fmted_keys.update({key: kwargs["product"]}) - elif key == "version": - self._fmted_keys.update({key: kwargs["version"]}) elif key in kwargs: self._fmted_keys.update({key: kwargs[key]}) elif key in defaults: