1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00

Fix website!

This commit is contained in:
Steffo 2019-11-04 12:56:27 +01:00
parent 92156eaf94
commit 59191a7ec4
6 changed files with 6 additions and 6 deletions

View file

@ -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]

View file

@ -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]

View file

@ -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]

View file

@ -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]

View file

@ -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]

View file

@ -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]