Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
praiskup committed Oct 4, 2024
1 parent 48e70b9 commit 0754c52
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/tito/builder/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

from pkg_resources import require
try:
from packaging.version import Version as LooseVersion
from packaging.version import Version as loose_version
except ImportError:
from distutils.version import LooseVersion as loose_version
from tempfile import mkdtemp
Expand Down
4 changes: 2 additions & 2 deletions test/functional/release_copr_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@

from functional.fixture import TitoGitTestFixture

from unit import titodir

from tito.compat import * # NOQA
from tito.release import CoprReleaser

from unit import titodir

PKG_NAME = "releaseme"

RELEASER_CONF = """
Expand Down
5 changes: 3 additions & 2 deletions test/unit/pep8_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@

import unittest

from tito.compat import * # NOQA
from tito.compat import StringIO, redirect_stdout
from unit.fixture import TitoUnitTestFixture, REPO_DIR
from unit import skip_if_tox

from tito.compat import * # NOQA
from tito.compat import StringIO, redirect_stdout


class TestPep8(TitoUnitTestFixture):
def setUp(self):
Expand Down

0 comments on commit 0754c52

Please sign in to comment.