Skip to content

Commit

Permalink
Corrected accidental edit
Browse files Browse the repository at this point in the history
  • Loading branch information
goettner committed Dec 4, 2020
1 parent bfa84f9 commit 3038b47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions redbot/core/bank.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def _decode_time(time: int) -> datetime:
return datetime.utcfromtimestamp(time)


async def get_balance(member: Union[discord.Member, discord.User, discord.Object]) -> int:
async def get_balance(member: discord.Member) -> int:
"""Get the current balance of a member.
Parameters
Expand Down Expand Up @@ -599,7 +599,7 @@ async def get_leaderboard_position(
return pos[0]


async def get_account(member: Union[discord.Member, discord.User, discord.Object]) -> Account:
async def get_account(member: Union[discord.Member, discord.User]) -> Account:
"""Get the appropriate account for the given user or member.
A member is required if the bank is currently guild specific.
Expand Down

0 comments on commit 3038b47

Please sign in to comment.