remove unused asyncio

This commit is contained in:
Chih Cheng Liang
2019-11-19 18:36:53 +08:00
committed by mhchia
parent 50db9e1474
commit 417b5e7d61
4 changed files with 1 additions and 5 deletions

View File

@ -1,4 +1,3 @@
import asyncio
from typing import Sequence from typing import Sequence
from libp2p.crypto.keys import KeyPair from libp2p.crypto.keys import KeyPair

View File

@ -1,3 +1,2 @@
"""Kademlia is a Python implementation of the Kademlia protocol which utilizes """Kademlia is a Python implementation of the Kademlia protocol."""
the asyncio library."""
__version__ = "2.0" __version__ = "2.0"

View File

@ -1,4 +1,3 @@
import asyncio
from typing import TYPE_CHECKING from typing import TYPE_CHECKING
import trio import trio

View File

@ -1,4 +1,3 @@
import asyncio
import logging import logging
from socket import socket from socket import socket
from typing import List from typing import List