From 8e12cb43ab93bfbc7db3481835721d1777b7274c Mon Sep 17 00:00:00 2001 From: eaydingol Date: Wed, 12 Nov 2025 09:43:34 +0300 Subject: [PATCH] Fix syle --- src/test/regress/citus_tests/upgrade/citus_upgrade_test.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/test/regress/citus_tests/upgrade/citus_upgrade_test.py b/src/test/regress/citus_tests/upgrade/citus_upgrade_test.py index 0ae0ac387..c73ea097c 100755 --- a/src/test/regress/citus_tests/upgrade/citus_upgrade_test.py +++ b/src/test/regress/citus_tests/upgrade/citus_upgrade_test.py @@ -184,7 +184,9 @@ def find_compatible_udf_signature(full_args, return_type, post_signatures): post_args_list = [ arg.strip() for arg in post_full_args.split(",") if arg.strip() ] - """ Here check if the function signatures are compatible, they are compatible if: post_args_list has all the arguments of pre_args_list in the same order, but can have additional arguments with default values """ + """ Here check if the function signatures are compatible, they are compatible if: + post_args_list has all the arguments of pre_args_list in the same order, but can have + additional arguments with default values """ pre_index = 0 post_index = 0 compatible = True