From 8039638482ebedb9cd10cb1eac083631919ac95e Mon Sep 17 00:00:00 2001 From: Adeeb Shihadeh Date: Sun, 31 May 2020 17:34:34 -0700 Subject: [PATCH] fix linter complaint about unexpected spaces around keyword / parameter equals --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index f34905d..6c9de15 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ setup( packages=[ 'panda', ], - package_dir = {'panda': 'python'}, + package_dir={'panda': 'python'}, platforms='any', license='MIT', install_requires=[ @@ -52,7 +52,7 @@ setup( 'tqdm >= 4.14.0', 'requests' ], - ext_modules = [], + ext_modules=[], description="Code powering the comma.ai panda", long_description='See https://github.com/commaai/panda', classifiers=[