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 libp2p.crypto.keys import KeyPair

View File

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

View File

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

View File

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