From 6234d86a322ed98242a538411992896a06eb69bd Mon Sep 17 00:00:00 2001 From: Stanislav Beliaev Date: Fri, 24 Jan 2020 16:13:57 -0800 Subject: [PATCH] Adjust list of tokens to new line length. Signed-off-by: Stanislav Beliaev --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 8026e5e3254c..e79c09487186 100644 --- a/setup.py +++ b/setup.py @@ -47,9 +47,7 @@ def is_build_action(): if len(sys.argv) <= 1: return False - BUILD_TOKENS = [ - "egg_info", "dist", "bdist", "sdist", "install", "build", "develop" - ] + BUILD_TOKENS = ["egg_info", "dist", "bdist", "sdist", "install", "build", "develop"] if any([sys.argv[1].startswith(x) for x in BUILD_TOKENS]): return True