-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
1,186 additions
and
1,100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
from leveler.abc import CompositeMetaClass | ||
|
||
from .backgrounds import Backgrounds | ||
from .badge import Badge | ||
from .economy import Economy | ||
from .roles import Roles | ||
from .settings import Settings | ||
from .users import Users | ||
|
||
|
||
class LevelAdmin(Backgrounds, Economy, Roles, Settings, Users, metaclass=CompositeMetaClass): | ||
"""Database converters commands""" | ||
class LevelAdmin( | ||
Backgrounds, Economy, Roles, Settings, Users, Badge, metaclass=CompositeMetaClass | ||
): | ||
"""Leveler administration commands""" |
Oops, something went wrong.