From 6d7fa0d472c443da8424929f57937a528284b579 Mon Sep 17 00:00:00 2001 From: HumanAIGC-Engineering Date: Thu, 4 Sep 2025 17:06:14 +0800 Subject: [PATCH] Update config.py Remove the verify parameter (verify=True) to be compatible with support for higher versions of yapf --- utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/config.py b/utils/config.py index 0513d64..3782825 100644 --- a/utils/config.py +++ b/utils/config.py @@ -495,7 +495,7 @@ class Config: blank_line_before_nested_class_or_def=True, split_before_expression_after_opening_paren=True, ) - text, _ = FormatCode(text, style_config=yapf_style, verify=True) + text, _ = FormatCode(text, style_config=yapf_style) return text