Skip to content

Commit

Permalink
Fixed static check issues!
Browse files Browse the repository at this point in the history
Signed-off-by: Kowshik Jois B S <[email protected]>
  • Loading branch information
bskjois committed Oct 31, 2024
1 parent 328b4db commit 8ce5e11
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion virttest/asset.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
import re
import shutil

from avocado.utils import astring, crypto, download, genio, git, process

from six import StringIO

from avocado.utils import astring, crypto, download, genio, git, process
from six import string_types
from six.moves import urllib

Expand Down
4 changes: 2 additions & 2 deletions virttest/utils_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import logging
import os.path

from six import StringIO

from avocado.utils import distro

from six import StringIO

LOG = logging.getLogger("avocado." + __name__)


Expand Down
4 changes: 2 additions & 2 deletions virttest/utils_disk.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
import string
import tempfile

from functools import cmp_to_key

from avocado.core import exceptions
from avocado.utils import process, wait
from avocado.utils.service import SpecificServiceManager

from functools import cmp_to_key

from virttest import error_context, remote, utils_misc, utils_numeric

PARTITION_TABLE_TYPE_MBR = "msdos"
Expand Down

0 comments on commit 8ce5e11

Please sign in to comment.