Skip to content

Commit

Permalink
Fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
veerendra2 committed Nov 30, 2024
1 parent acb4d8b commit 478093d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

with open("kompozit/kompozit.py", "r", encoding="utf-8") as file:
REGEX_VERSION = r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]'
version = re.search(REGEX_VERSION, file.read(), re.MULTILINE).group(1) # type: ignore[union-attr]
version = re.search(REGEX_VERSION, file.read(), re.MULTILINE).group(1)

with open("README.md", "r", encoding="utf-8") as file:
readme = file.read()
Expand Down

0 comments on commit 478093d

Please sign in to comment.