Skip to content

Commit

Permalink
remove mypy ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bhnvx committed Feb 23, 2024
1 parent b45d8ac commit 0ab17ad
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ jobs:
- name: Run Isort
run: poetry run isort . --check --diff

- name: Run Mypy
run: poetry run mypy .
# - name: Run Mypy
# run: poetry run mypy .

- name: Run Toml Sort
run: poetry run toml-sort pyproject.toml --all --check
Expand Down
4 changes: 2 additions & 2 deletions app/entities/collections/shop/shop_collection.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from dataclasses import asdict
from typing import Any
from typing import Any, Awaitable, Type

import pymongo
from motor.motor_asyncio import AsyncIOMotorCollection
Expand All @@ -14,7 +14,7 @@


class ShopCollection:
_collection: AsyncIOMotorCollection = AsyncIOMotorCollection(db, "shops")
_collection = AsyncIOMotorCollection(db, "shops")

@classmethod
async def set_index(cls) -> None:
Expand Down

0 comments on commit 0ab17ad

Please sign in to comment.