fixed "separator" type in GUIEntity

This commit is contained in:
iLLiCiTiT 2021-02-15 12:23:55 +01:00
parent a166f21f94
commit 75cdac3e84

View file

@ -57,7 +57,7 @@ class GUIEntity(BaseEntity):
"""Entity without any specific logic that should be handled only in GUI."""
gui_type = True
schema_types = ["divider", "splitter", "label"]
schema_types = ["separator", "splitter", "label"]
def __getitem__(self, key):
return self.schema_data[key]