unused imports

This commit is contained in:
meejah 2020-06-11 15:34:40 -06:00
parent 86a90084bb
commit 00e7d01a1a
2 changed files with 0 additions and 17 deletions

View File

@ -1,5 +1,3 @@
import io
from twisted.trial.unittest import ( from twisted.trial.unittest import (
TestCase, TestCase,
) )

View File

@ -1,30 +1,17 @@
import io
import os
import json
import string
import hashlib import hashlib
import attr import attr
from hyperlink import DecodedURL from hyperlink import DecodedURL
from twisted.python.filepath import (
FilePath,
)
from twisted.web.resource import ( from twisted.web.resource import (
Resource, Resource,
) )
from twisted.web.client import (
Agent,
FileBodyProducer,
)
from twisted.web.iweb import ( from twisted.web.iweb import (
IBodyProducer, IBodyProducer,
) )
from twisted.internet.defer import ( from twisted.internet.defer import (
inlineCallbacks,
succeed, succeed,
returnValue,
) )
from treq.client import ( from treq.client import (
@ -32,8 +19,6 @@ from treq.client import (
) )
from treq.testing import ( from treq.testing import (
RequestTraversalAgent, RequestTraversalAgent,
RequestSequence,
StubTreq,
) )
from zope.interface import implementer from zope.interface import implementer