Skip to content

Commit

Permalink
Fix : Regex search error due to black-formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
KichangKim committed Jan 4, 2022
1 parent c9bbfb0 commit 92ba0b5
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("deepdanbooru/__main__.py", encoding="utf-8") as f:
version = re.search("__version__ = '([^']+)'", f.read()).group(1) # type: ignore
version = re.search('__version__ = "([^"]+)"', f.read()).group(1) # type: ignore


install_requires = [
Expand Down

0 comments on commit 92ba0b5

Please sign in to comment.