From 635e253b820a7de0a8f8841d994683a382395710 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Mon, 30 Oct 2023 10:33:06 +0800 Subject: [PATCH] python-common: remove spaces around `=` to be more PEP8 compliant Signed-off-by: Kefu Chai --- src/python-common/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/python-common/setup.py b/src/python-common/setup.py index 30f52516ccd0d..1acdd2f91cbcb 100644 --- a/src/python-common/setup.py +++ b/src/python-common/setup.py @@ -16,11 +16,11 @@ setup( license='LGPLv2+', keywords='ceph', url="https://github.com/ceph/ceph", - zip_safe = False, + zip_safe=False, install_requires=( 'pyyaml', ), - classifiers = [ + classifiers=[ 'Intended Audience :: Developer', 'Operating System :: POSIX :: Linux', 'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)', -- 2.39.5