From 8b2d28a019a7da13c76aac7e880c17530494dede Mon Sep 17 00:00:00 2001 From: Reece Dunham Date: Mon, 30 Nov 2020 10:25:30 -0500 Subject: [PATCH] Formatting (#2078) * setup.py: comply with Python style guide Signed-off-by: Reece Dunham * Revert spacing changes --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 78dcc6271..7ba2d1d7d 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ with open("package.json") as data: with open("requirements.txt") as data: install_requires = [ line for line in data.read().split("\n") - if line and not line.startswith("#") + if line and not line.startswith("#") ] # Load README contents