Skip to content

Commit

Permalink
Fixup imports for isort
Browse files Browse the repository at this point in the history
Change fixes up CI issues with flake8.

Signed-off-by: William Douglas <[email protected]>
  • Loading branch information
bryteise committed Oct 11, 2023
1 parent 444c02f commit 623d973
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions autospec/autospec.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
import sys
import tempfile

from abireport import examine_abi
import build
import buildreq
import check
Expand All @@ -32,12 +31,13 @@
import files
import git
import license
from logcheck import logcheck
import pkg_integrity
import pkg_scan
import specdescription
import specfiles
import tarball
from abireport import examine_abi
from logcheck import logcheck
from util import binary_in_path, print_fatal, write_out

sys.path.append(os.path.dirname(__file__))
Expand Down
3 changes: 1 addition & 2 deletions autospec/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,7 @@

import check
import license
from util import call, print_info, print_warning, write_out
from util import open_auto
from util import call, open_auto, print_info, print_warning, write_out


def read_pattern_conf(filename, dest, list_format=False, path=None):
Expand Down
1 change: 1 addition & 0 deletions autospec/count.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

import argparse
import re

import util

testcount = {}
Expand Down
1 change: 0 additions & 1 deletion autospec/license.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

import chardet
import download

from util import get_contents, get_sha1sum, print_fatal, print_warning

default_license = "TO BE DETERMINED"
Expand Down
3 changes: 1 addition & 2 deletions autospec/specfiles.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@
import types
from collections import OrderedDict

from util import _file_write
from util import open_auto
from util import _file_write, open_auto


class Specfile(object):
Expand Down
1 change: 0 additions & 1 deletion autospec/tarball.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
import zipfile

import download

from util import do_regex, get_sha1sum, print_fatal, write_out


Expand Down

0 comments on commit 623d973

Please sign in to comment.