Skip to content

Commit

Permalink
Remove not used coroutine import
Browse files Browse the repository at this point in the history
coroutine is removed from python since python 3.11, it's imported in the
__init__.py file but not used anywhere so that can be removed safely.
  • Loading branch information
danigm committed Feb 23, 2023
1 parent a973dab commit e6ccb16
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pydle/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# noinspection PyUnresolvedReferences
from asyncio import coroutine, Future
from asyncio import Future
from functools import cmp_to_key
from . import connection, protocol, client, features
from .client import Error, NotInChannel, AlreadyInChannel, BasicClient, ClientPool
Expand Down

0 comments on commit e6ccb16

Please sign in to comment.