diff --git a/royalnet/packs/common/commands/__init__.py b/royalnet/packs/common/commands/__init__.py index 46cf3b53..39e16489 100644 --- a/royalnet/packs/common/commands/__init__.py +++ b/royalnet/packs/common/commands/__init__.py @@ -9,4 +9,4 @@ available_commands = [ ] # Don't change this, it should automatically generate __all__ -__all__ = [command.__class__.__qualname__ for command in available_commands] +__all__ = [command.__name__ for command in available_commands] diff --git a/royalnet/packs/common/tables/__init__.py b/royalnet/packs/common/tables/__init__.py index bde51ac0..cc96674c 100644 --- a/royalnet/packs/common/tables/__init__.py +++ b/royalnet/packs/common/tables/__init__.py @@ -11,4 +11,4 @@ available_tables = [ ] # Don't change this, it should automatically generate __all__ -__all__ = [table.__class__.__qualname__ for table in available_tables] +__all__ = [table.__name__ for table in available_tables] diff --git a/royalnet/packs/royal/commands/__init__.py b/royalnet/packs/royal/commands/__init__.py index b45e1d8e..d33a1e17 100644 --- a/royalnet/packs/royal/commands/__init__.py +++ b/royalnet/packs/royal/commands/__init__.py @@ -49,4 +49,4 @@ available_commands = [ ] # Don't change this, it should automatically generate __all__ -__all__ = [command.__class__.__qualname__ for command in available_commands] +__all__ = [command.__name__ for command in available_commands] diff --git a/royalnet/packs/royal/tables/__init__.py b/royalnet/packs/royal/tables/__init__.py index 34cd4564..30ce6f79 100644 --- a/royalnet/packs/royal/tables/__init__.py +++ b/royalnet/packs/royal/tables/__init__.py @@ -32,4 +32,4 @@ available_tables = [ ] # Don't change this, it should automatically generate __all__ -__all__ = [table.__class__.__qualname__ for table in available_tables] +__all__ = [table.__name__ for table in available_tables] diff --git a/royalnet/packs/rpg/commands/__init__.py b/royalnet/packs/rpg/commands/__init__.py index 2c22a65c..aa045b90 100644 --- a/royalnet/packs/rpg/commands/__init__.py +++ b/royalnet/packs/rpg/commands/__init__.py @@ -23,4 +23,4 @@ available_commands = [ ] # Don't change this, it should automatically generate __all__ -__all__ = [command.__class__.__qualname__ for command in available_commands] +__all__ = [command.__name__ for command in available_commands] diff --git a/royalnet/packs/rpg/tables/__init__.py b/royalnet/packs/rpg/tables/__init__.py index 908752c8..70dc4390 100644 --- a/royalnet/packs/rpg/tables/__init__.py +++ b/royalnet/packs/rpg/tables/__init__.py @@ -9,4 +9,4 @@ available_tables = [ ] # Don't change this, it should automatically generate __all__ -__all__ = [table.__class__.__qualname__ for table in available_tables] +__all__ = [table.__name__ for table in available_tables]