From a06807d2528dc7c7971fb7f1338834346f54bec8 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Sun, 31 Dec 2023 16:54:51 +0100 Subject: [PATCH] make lint happy --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ae25116ae..b62b310c6 100755 --- a/setup.py +++ b/setup.py @@ -473,7 +473,9 @@ def main(): elif which('rpm'): missdeps("sudo yum install gcc %s%s-devel" % (pyimpl, py3)) elif which('apk'): - missdeps("sudo apk add gcc %s%s-dev musl-dev linux-headers" % (pyimpl, py3)) + missdeps( + "sudo apk add gcc %s%s-dev musl-dev linux-headers" % ( + pyimpl, py3)) elif MACOS: print(hilite("XCode (https://developer.apple.com/xcode/) " "is not installed", color="red"), file=sys.stderr)