-
-
Notifications
You must be signed in to change notification settings - Fork 82
Open
Labels
TRIAGEUser-submitted issue that hasn't been triaged yet.User-submitted issue that hasn't been triaged yet.type-bugBug reportBug report
Description
Should the objects container of a Selector be shared when check_on_set is False?
import param
class P(param.Parameterized):
s = param.Selector(default=1, objects=[1, 2], check_on_set=False)
pa = P(s=3)
pb = P(s=4)
p = P()
print(p.param.s.objects)
# [1, 2, 3, 4]Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
TRIAGEUser-submitted issue that hasn't been triaged yet.User-submitted issue that hasn't been triaged yet.type-bugBug reportBug report