mirror of
https://github.com/Mayuri-Chan/pyrofork.git
synced 2025-12-29 12:04:51 +00:00
Fix tests
This commit is contained in:
parent
81baf853b5
commit
212ea57390
1 changed files with 2 additions and 2 deletions
|
|
@ -18,10 +18,10 @@
|
||||||
|
|
||||||
class Client:
|
class Client:
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.username = "username"
|
self.me = User("username")
|
||||||
|
|
||||||
async def get_me(self):
|
async def get_me(self):
|
||||||
return User(self.username)
|
return self.me
|
||||||
|
|
||||||
|
|
||||||
class User:
|
class User:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue