can pop an unexisted property
This commit is contained in:
parent
cc58a3f5c3
commit
80881875b2
|
@ -683,9 +683,10 @@ class TiramisuContextProperty(TiramisuContext):
|
|||
@count
|
||||
def pop(self, prop):
|
||||
props = self.get()
|
||||
props.remove(prop)
|
||||
self.set(frozenset(props))
|
||||
self.config_bag.setting_properties = self.config_bag.config.cfgimpl_get_settings().get_context_properties()
|
||||
if prop in props:
|
||||
props.remove(prop)
|
||||
self.set(frozenset(props))
|
||||
self.config_bag.setting_properties = self.config_bag.config.cfgimpl_get_settings().get_context_properties()
|
||||
|
||||
@count
|
||||
def get(self):
|
||||
|
|
Loading…
Reference in New Issue