summaryrefslogtreecommitdiff
path: root/dns/_asyncio_backend.py
diff options
context:
space:
mode:
Diffstat (limited to 'dns/_asyncio_backend.py')
-rw-r--r--dns/_asyncio_backend.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/dns/_asyncio_backend.py b/dns/_asyncio_backend.py
index f82eb82..4120624 100644
--- a/dns/_asyncio_backend.py
+++ b/dns/_asyncio_backend.py
@@ -57,7 +57,7 @@ class DatagramSocket(dns._asyncbackend.DatagramSocket):
self.transport = transport
self.protocol = protocol
- async def sendto(self, what, destination, timeout):
+ async def sendto(self, what, destination, timeout): # pragma: no cover
# no timeout for asyncio sendto
self.transport.sendto(what, destination)
@@ -127,7 +127,8 @@ class Backend(dns._asyncbackend.Backend):
server_hostname=server_hostname),
timeout)
return StreamSocket(af, r, w)
- raise NotImplementedError(f'unsupported socket type {socktype}')
+ raise NotImplementedError('unsupported socket ' +
+ f'type {socktype}') # pragma: no cover
async def sleep(self, interval):
await asyncio.sleep(interval)