Skip to content

Commit

Permalink
FEATURE/#237
Browse files Browse the repository at this point in the history
  • Loading branch information
joocer committed Jun 26, 2022
1 parent 92771ad commit 0a448c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion opteryx/engine/functions/other_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def _make_list(arr, length):
def inner_coalesce(iterable):
for element in iterable:
print(element)
if (element is not None) and (element == element):
if (element is not None) and (element == element): # nosemgrep
return element
return None

Expand Down

0 comments on commit 0a448c3

Please sign in to comment.