mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Fix website!
This commit is contained in:
parent
92156eaf94
commit
59191a7ec4
6 changed files with 6 additions and 6 deletions
|
@ -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]
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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]
|
||||
|
|
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue