From c33b817490cbcb3d00cd5423cdd4eaf77e3c745e Mon Sep 17 00:00:00 2001 From: "moltenform.com(Ben Fisher)" Date: Mon, 10 Jun 2024 13:03:35 -0700 Subject: [PATCH] Linting --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 1730527..4e920c1 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,9 @@ with open(version_file) as f: for line in f.read().split("\n"): if line.startswith("__version__ ="): - version = re.match(r"^\s*__version__\s*=\s*['\"](.*?)['\"]\s*$", line).group(1) + version = re.match( + r"^\s*__version__\s*=\s*['\"](.*?)['\"]\s*$", line + ).group(1) break else: print("No __version__ attribute found in %r" % version_file)