changeset 16:304b46e9a34b draft

Uploaded
author greg
date Tue, 27 Nov 2018 10:57:30 -0500
parents 13de3d5839ac
children bcbdc7f7aa7a
files validate_temperature_data.py
diffstat 1 files changed, 1 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/validate_temperature_data.py	Tue Nov 27 10:54:40 2018 -0500
+++ b/validate_temperature_data.py	Tue Nov 27 10:57:30 2018 -0500
@@ -147,10 +147,7 @@
             accumulated_msgs = validate_integer(i, doy, accumulated_msgs, "doy")
             # Make sure the DOY values are consecutive.
             if i == 1:
-                try:
-                    last_doy = int(doy)
-                except Exception:
-                    pass
+                last_doy = int(doy)
             else:
                 try:
                     if int(doy) != (last_doy + 1):