Skip to content

Commit e6c0dcc

Browse files
committed
Fixing the issue
1 parent b995816 commit e6c0dcc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyatlan/model/typedef.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ class Options(AtlanObject):
504504

505505
def __setattr__(self, name, value):
506506
super().__setattr__(name, value)
507-
if self._attr_def and name == "multi_value_select":
507+
if self._attr_def and name == "multi_value_select" and value is True:
508508
self._attr_def.cardinality = Cardinality.SET
509509
if self._attr_def.type_name and "array<" not in str(
510510
self._attr_def.type_name

0 commit comments

Comments
 (0)