mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 11:34:18 +00:00
Remove unused import
This commit is contained in:
parent
0397dd092f
commit
c6103325b7
1 changed files with 0 additions and 2 deletions
|
@ -3,7 +3,6 @@ import royalnet.utils as ru
|
||||||
from royalnet.constellation.api import *
|
from royalnet.constellation.api import *
|
||||||
from royalnet.constellation.api.apierrors import *
|
from royalnet.constellation.api.apierrors import *
|
||||||
from ..tables.users import User
|
from ..tables.users import User
|
||||||
from ..tables.aliases import Alias
|
|
||||||
from ..tables.tokens import Token
|
from ..tables.tokens import Token
|
||||||
|
|
||||||
|
|
||||||
|
@ -24,7 +23,6 @@ class ApiLoginRoyalnetStar(ApiStar):
|
||||||
async def api(self, data: ApiData) -> ru.JSON:
|
async def api(self, data: ApiData) -> ru.JSON:
|
||||||
TokenT = self.alchemy.get(Token)
|
TokenT = self.alchemy.get(Token)
|
||||||
UserT = self.alchemy.get(User)
|
UserT = self.alchemy.get(User)
|
||||||
AliasT = self.alchemy.get(Alias)
|
|
||||||
|
|
||||||
username = data["username"]
|
username = data["username"]
|
||||||
password = data["password"]
|
password = data["password"]
|
||||||
|
|
Loading…
Reference in a new issue