diff --git a/setup.py b/setup.py index e8e9057..5c5cad5 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ "wheel", ] -VERSION = "0.0.13" +VERSION = "0.0.14" # Optional packages EXTRAS = {"dev": DEV} @@ -123,7 +123,8 @@ def run(self): raise errors.DistutilsError("Type-checking failed.") self.status("Running flake8...") - exit_code = os.system("flake8 --exclude .git,.venv,__pycache__,build,dist") + exit_code = os.system( + "flake8 --exclude .git,.venv,__pycache__,build,dist") if exit_code != 0: raise errors.DistutilsError(" failed.")