Skip to content

Commit

Permalink
fix: correct isort build fail
Browse files Browse the repository at this point in the history
  • Loading branch information
esciara authored and relekang committed Jun 4, 2019
1 parent 9c7302e commit 0037210
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions semantic_release/__init__.py
Expand Up @@ -3,8 +3,8 @@
__version__ = '4.1.1'


from .errors import (SemanticReleaseBaseError, ImproperConfigurationError, # noqa
UnknownCommitMessageStyleError) # noqa
from .errors import UnknownCommitMessageStyleError # noqa; noqa
from .errors import ImproperConfigurationError, SemanticReleaseBaseError


def setup_hook(argv: list):
Expand Down
5 changes: 3 additions & 2 deletions semantic_release/history/__init__.py
Expand Up @@ -2,14 +2,15 @@
"""
import re
from typing import Optional
import semver

import ndebug
import semver

from ..errors import ImproperConfigurationError
from ..settings import config
from ..vcs_helpers import get_commit_log, get_last_version
from .logs import evaluate_version_bump # noqa
from ..errors import ImproperConfigurationError

from .parser_angular import parse_commit_message as angular_parser # noqa isort:skip
from .parser_tag import parse_commit_message as tag_parser # noqa isort:skip

Expand Down

0 comments on commit 0037210

Please sign in to comment.