Skip to content

Commit

Permalink
Update general.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nitinankad committed Feb 11, 2021
1 parent b60eb8a commit aad1c31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cogs/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ async def btc(self, ctx):
async def crypto(self, ctx, *, ticker):
ticker = ticker.lower()

if not ticker in self.tickers or not ticker in self.coin_ids:
if not ticker in self.tickers and not ticker in self.coin_ids:
print("Invalid ticker")
return

Expand Down

0 comments on commit aad1c31

Please sign in to comment.