From c73e374f1acaef8b48099db0c87cc5c597e9274c Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 19 Oct 2020 16:02:49 +0530 Subject: [PATCH] Remove unneeded space --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e145e013a..fed74687a 100755 --- a/setup.py +++ b/setup.py @@ -344,8 +344,8 @@ def kitty_env() -> Env: ] test_program_src = '''#include int main(void) { return 0; }\n''' - user_notifications_framework = first_successful_compile(ans.cc, ' -framework UserNotifications', - src=test_program_src, lang='objective-c') + user_notifications_framework = first_successful_compile( + ans.cc, '-framework UserNotifications', src=test_program_src, lang='objective-c') if user_notifications_framework: platform_libs.extend(shlex.split(user_notifications_framework)) else: