Skip to content

Commit 8727c86

Browse files
author
oleksandr.volha
committed
resolve conflicts
2 parents 7e8169e + 428f231 commit 8727c86

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,7 @@ def _wrap_str_value(value: str) -> str:
7373
def equal_modifier(self, field: str, value: DEFAULT_VALUE_TYPE) -> str:
7474
if isinstance(value, list):
7575
values = ", ".join(
76-
f"{self._pre_process_value(field, str(v) if isinstance(v, int) else v, ValueType.value, True)}"
77-
for v in value
76+
f"{self._pre_process_value(field, str(v), value_type=ValueType.value, wrap_str=True)}" for v in value
7877
)
7978
return f"{field} in ({values})"
8079

0 commit comments

Comments
 (0)