Skip to content

Commit 8d12237

Browse files
MDE/PKFE-32 bug-fix
1 parent ce2b7fc commit 8d12237

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

app/back-end/src/routes/workspace_aggregate_route.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,7 @@ def get_workspace_aggregate_all(relative_path):
104104
or header_values[field] == float("-inf")
105105
or (
106106
header_values[field] == float(0)
107-
and (
108-
header_actions[field] != "min"
109-
or header_actions[field] != "max"
110-
or header_actions[field] != "cnt"
111-
)
107+
and header_actions[field] not in ["min", "max", "cnt"]
112108
)
113109
else (
114110
str(int(header_values[field]))

0 commit comments

Comments
 (0)