From 8c65a67f92a995df9e5cdcd915fd225e7251e7e8 Mon Sep 17 00:00:00 2001 From: Ivan Levkivskyi Date: Thu, 27 Apr 2023 11:35:49 +0100 Subject: [PATCH] Fix lint --- src/com2ann.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com2ann.py b/src/com2ann.py index 7f3b5ef..5e41a5f 100644 --- a/src/com2ann.py +++ b/src/com2ann.py @@ -382,7 +382,7 @@ def split_function_comment(comment: str, arg_list = arg_list.strip() ret = ret.strip() - if not(arg_list[0] == '(' and arg_list[-1] == ')'): + if not (arg_list[0] == '(' and arg_list[-1] == ')'): if not silent: print('Invalid function type comment:', comment, file=sys.stderr)