Skip to content

Commit 64e3b87

Browse files
author
oleksandr.volha
committed
merge main into gis-8036
2 parents 5fd269c + 50a0bbf commit 64e3b87

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

uncoder-core/app/translator/platforms/palo_alto/renders/cortex_xsiam.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,8 @@ def _wrap_str_value(value: str) -> str:
7171
def equal_modifier(self, field: str, value: DEFAULT_VALUE_TYPE) -> str:
7272
if isinstance(value, list):
7373
values = ", ".join(
74-
f"{self._pre_process_value(field, str(v), value_type=ValueType.value, wrap_str=True)}" for v in value
74+
f"{self._pre_process_value(field, str(v) if isinstance(v, int) else v, ValueType.value, True)}"
75+
for v in value
7576
)
7677
return f"{field} in ({values})"
7778

0 commit comments

Comments
 (0)