From 4685c251c64da45f7c134a16ae92698db6b43d63 Mon Sep 17 00:00:00 2001 From: Grey Li Date: Sat, 26 Mar 2022 09:24:50 +0800 Subject: [PATCH] Add missing docstring for Blueprint cli_group --- src/flask/blueprints.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/flask/blueprints.py b/src/flask/blueprints.py index 5c23a735..2aa8b4dd 100644 --- a/src/flask/blueprints.py +++ b/src/flask/blueprints.py @@ -153,6 +153,8 @@ class Blueprint(Scaffold): this based on ``import_name``. In certain situations this automatic detection can fail, so the path can be specified manually instead. + :param cli_group: The name of the blueprint's CLI group. If not set, + the blueprint name will be used. .. versionchanged:: 1.1.0 Blueprints have a ``cli`` group to register nested CLI commands.