Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update cloudquery/sdk/scalar/list.py
  • Loading branch information
candiduslynx authored Oct 9, 2023
commit d0cced4e7fd85f5ccb525f6d57facb6803998446
2 changes: 1 addition & 1 deletion cloudquery/sdk/scalar/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def set(self, val: Any):
self._value = Vector()
return

if isinstance(val, self._type)):
if isinstance(val, self._type)):
Comment thread
candiduslynx marked this conversation as resolved.
Outdated
if not val.is_valid:
self._valid = False
self._value = Vector()
Expand Down