From 3927715a1aa9617ec364849223c76c6312f3c490 Mon Sep 17 00:00:00 2001 From: Kolin Guo Date: Tue, 16 Apr 2024 11:57:11 -0700 Subject: [PATCH] Limit maximum method/function signature length --- docs/source/conf.py | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/conf.py b/docs/source/conf.py index eb5abeaf..d068bd2f 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -35,6 +35,7 @@ templates_path = ["_templates"] exclude_patterns = [] +maximum_signature_line_length = 88 # limit maximum method/function signature length # -- Options for HTML output -------------------------------------------------