From 92ba0b56be5eed0037e3f067bb9867f5ac691647 Mon Sep 17 00:00:00 2001 From: Kichang Kim Date: Tue, 4 Jan 2022 09:21:51 +0900 Subject: [PATCH] Fix : Regex search error due to black-formatting. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 84fb640..f76a670 100644 --- a/setup.py +++ b/setup.py @@ -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 = [