Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -158,7 +158,7 @@ def mainFunc(STREAM_ID, SOURCE_BRANCH, TARGET_BRANCH, UUID_COL, ATTR_METADATA, K
|
|
158 |
try:
|
159 |
# default to include property
|
160 |
isUsedFlag = attributesOfInterestDetails[k].get("isUsed", True)
|
161 |
-
if isUsedFlag == False or isUsedFlag
|
162 |
AoIDetailsFlag = False
|
163 |
except KeyError as e: # Catching specific exceptions for clarity
|
164 |
print(f"AoIDetails test failed for key {k}: {e}")
|
|
|
158 |
try:
|
159 |
# default to include property
|
160 |
isUsedFlag = attributesOfInterestDetails[k].get("isUsed", True)
|
161 |
+
if isUsedFlag == False or isUsedFlag == "False" :
|
162 |
AoIDetailsFlag = False
|
163 |
except KeyError as e: # Catching specific exceptions for clarity
|
164 |
print(f"AoIDetails test failed for key {k}: {e}")
|