Skip to content

Commit

Permalink
build: fix black errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thebaptiste committed Dec 18, 2023
1 parent 576c463 commit f235782
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
5 changes: 0 additions & 5 deletions ghtc/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@


class ConventionalCommitType(enum.Enum):

OTHER = 0
BUILD = 1
CHORE = 2
Expand All @@ -23,14 +22,12 @@ class ConventionalCommitType(enum.Enum):

@dataclass(frozen=True)
class ConventionalCommitFooter:

key: str
value: str


@dataclass(frozen=True, unsafe_hash=True)
class ConventionalCommitMessage:

type: ConventionalCommitType
description: str
breaking: bool
Expand All @@ -41,7 +38,6 @@ class ConventionalCommitMessage:

@dataclass(frozen=True)
class ChangelogLine:

commit_message: ConventionalCommitMessage
commit_sha: str
commit_timestamp: int
Expand All @@ -57,7 +53,6 @@ def __post_init__(self):

@dataclass(frozen=True)
class ChangelogEntryForATag:

tag_name: str
tag_timestamp: int
lines_by_type: Dict[ConventionalCommitType, List[ChangelogLine]]
Expand Down
1 change: 0 additions & 1 deletion ghtc/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@


class TagNotFound(Exception):

pass


Expand Down

0 comments on commit f235782

Please sign in to comment.