From d11afe2d3bb7c2c9064c99e2187eb7e9d2b07172 Mon Sep 17 00:00:00 2001
From: Geoff Cureton <geoff.cureton@ssec.wisc.edu>
Date: Wed, 27 Sep 2023 17:54:33 +0000
Subject: [PATCH] Strip any leading or trailing zeros from the collection
 number.

---
 source/flo/__init__.py | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/source/flo/__init__.py b/source/flo/__init__.py
index aca7acc..a2e6659 100644
--- a/source/flo/__init__.py
+++ b/source/flo/__init__.py
@@ -961,9 +961,6 @@ class FUSION_MATLAB(Computation):
 
         LOG.debug("dist_root = '{}'".format(dist_root))
 
-        # Strip any leading or trailing zeros from the collection number.
-        product.options['collection'] = int(str(product.options['collection']).strip('0'))
-
         # Get the required  environment variables
         env = self.prepare_env(dist_root, inputs, context)
 
-- 
GitLab