trayp: rename invisible to hidden

This commit is contained in:
Jakub Jezek 2022-07-15 17:56:30 +02:00
parent fb586feaf3
commit 3cc78c2f98
No known key found for this signature in database
GPG key ID: 730D7C02726179A7
4 changed files with 7 additions and 7 deletions

View file

@ -7,7 +7,7 @@ from .creator_plugins import (
BaseCreator,
Creator,
AutoCreator,
InvisibleCreator,
HiddenCreator,
discover_creator_plugins,
discover_legacy_creator_plugins,
@ -36,7 +36,7 @@ __all__ = (
"BaseCreator",
"Creator",
"AutoCreator",
"InvisibleCreator",
"HiddenCreator",
"discover_creator_plugins",
"discover_legacy_creator_plugins",

View file

@ -416,7 +416,7 @@ class Creator(BaseCreator):
return self.pre_create_attr_defs
class InvisibleCreator(BaseCreator):
class HiddenCreator(BaseCreator):
@abstractmethod
def create(self, instance_data, source_data):
pass