Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
callmephilip committed Oct 30, 2023
1 parent 35f32f8 commit 424034d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

load_dotenv(".env.example")

from bots.settings import TOKEN_ADDRESS
from bots.data import Token, Price
from bots.settings import TOKEN_ADDRESS # noqa
from bots.data import Token, Price # noqa


@pytest.mark.asyncio
async def test_get_by_token_address():
t = await Token.get_by_token_address(TOKEN_ADDRESS)
assert t.token_address == TOKEN_ADDRESS
assert t.listed == True
assert t.listed is True


@pytest.mark.asyncio
Expand Down

0 comments on commit 424034d

Please sign in to comment.