From 2b3a1a7078da5fdd8aeb43f117c153972eb702a4 Mon Sep 17 00:00:00 2001 From: jblu Date: Tue, 30 Jul 2024 12:46:19 -0500 Subject: [PATCH] adjusted utype handling --- inexDataProcessing.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/inexDataProcessing.py b/inexDataProcessing.py index 00ceddd..a64d964 100644 --- a/inexDataProcessing.py +++ b/inexDataProcessing.py @@ -52,4 +52,6 @@ def identifyUtype(obj): if obj in file_uploaded: return "file_uploaded" if obj in file_downloaded: - return "file_downloaded" \ No newline at end of file + return "file_downloaded" + else: + return None \ No newline at end of file