Skip to content

Commit 2856f43

Browse files
committed
Fix linter
1 parent 00ec158 commit 2856f43

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/datasources/db/models.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from typing import AsyncIterator, cast, Sequence
1+
from typing import AsyncIterator, cast
22

33
from sqlmodel import (
44
JSON,
@@ -11,8 +11,8 @@
1111
select,
1212
)
1313
from sqlmodel.ext.asyncio.session import AsyncSession
14-
from web3.types import ABI
1514
from sqlmodel.sql._expression_select_cls import SelectBase
15+
from web3.types import ABI
1616

1717
from .utils import get_md5_abi_hash
1818

app/services/contract.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from sqlmodel.ext.asyncio.session import AsyncSession
44

55
from app.datasources.db.models import Contract
6-
from app.services.pagination import GenericPagination, PaginatedResponse
6+
from app.services.pagination import GenericPagination
77

88

99
class ContractService:

0 commit comments

Comments
 (0)