Update config.py

Remove the verify parameter (verify=True) to be compatible with support for higher versions of yapf
This commit is contained in:
HumanAIGC-Engineering
2025-09-04 17:06:14 +08:00
committed by GitHub
parent 35fe94896e
commit 6d7fa0d472

View File

@@ -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