Skip to content

Commit

Permalink
Fix pylint check
Browse files Browse the repository at this point in the history
  • Loading branch information
Andre0512 committed Jul 13, 2023
1 parent b0e3b15 commit 442e7a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyhon/connection/handler/base.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import logging
from collections.abc import AsyncIterator
from contextlib import asynccontextmanager, _AsyncGeneratorContextManager
from contextlib import asynccontextmanager
from types import TracebackType
from typing import Optional, Dict, Type, Any, Callable, Coroutine, AsyncGenerator
from typing import Optional, Dict, Type, Any

import aiohttp
from typing_extensions import Self
Expand Down
2 changes: 1 addition & 1 deletion pyhon/typedefs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Union, Any, TYPE_CHECKING, Protocol, AsyncIterator, Coroutine
from typing import Union, Any, TYPE_CHECKING, Protocol

import aiohttp
from yarl import URL
Expand Down

0 comments on commit 442e7a0

Please sign in to comment.