remove unused imports

This commit is contained in:
Jean-Paul Calderone 2023-07-11 16:32:33 -04:00
parent 79512a93e7
commit eef52fa59f
2 changed files with 0 additions and 7 deletions

View File

@ -7,7 +7,6 @@ import os
import stat import stat
import time import time
import weakref import weakref
import tempfile
from typing import Optional, Iterable from typing import Optional, Iterable
from base64 import urlsafe_b64encode from base64 import urlsafe_b64encode
from functools import partial from functools import partial

View File

@ -6,9 +6,6 @@ import tempfile
from uuid import ( from uuid import (
uuid4, uuid4,
) )
from errno import (
EACCES,
)
from io import ( from io import (
BytesIO, BytesIO,
) )
@ -30,9 +27,6 @@ from testtools.matchers import (
HasLength, HasLength,
) )
from twisted.python.runtime import (
platform,
)
from twisted.python.filepath import ( from twisted.python.filepath import (
FilePath, FilePath,
) )