mirror of
https://github.com/theupdateframework/python-tuf
synced 2026-05-24 10:08:28 +00:00
Remove unsued imports in tests
Remove unused and outdated imports in test_updater_ng.py Signed-off-by: Teodora Sechkova <tsechkova@vmware.com>
This commit is contained in:
parent
a3ebc7c3bb
commit
78a0f4d3b5
1 changed files with 0 additions and 18 deletions
|
|
@ -7,34 +7,16 @@
|
|||
"""
|
||||
|
||||
import os
|
||||
import time
|
||||
import shutil
|
||||
import copy
|
||||
import tempfile
|
||||
import logging
|
||||
import errno
|
||||
import sys
|
||||
import unittest
|
||||
import json
|
||||
import tracemalloc
|
||||
|
||||
if sys.version_info >= (3, 3):
|
||||
import unittest.mock as mock
|
||||
else:
|
||||
import mock
|
||||
|
||||
import tuf
|
||||
import tuf.exceptions
|
||||
import tuf.log
|
||||
import tuf.repository_tool as repo_tool
|
||||
import tuf.unittest_toolbox as unittest_toolbox
|
||||
|
||||
from tests import utils
|
||||
from tuf.api import metadata
|
||||
from tuf import ngclient
|
||||
|
||||
import securesystemslib
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue