Skip to content

Commit

Permalink
Sort scanner attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
huangsam committed Sep 30, 2024
1 parent 7547e77 commit 64ab141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion githooks/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ class CommitMessageScanner:
def __init__(self, commit_flname: str) -> None:
self.commit_flname = commit_flname
self.commit_lines: list[str] = []
self.subject_tags: set[str] = set()
self.subject_line: str = ""
self.subject_tags: set[str] = set()
self.non_headers: list[str] = []

def scan(self) -> None:
Expand Down

0 comments on commit 64ab141

Please sign in to comment.