From c4f65e6ab012d5bbf0817d1612e0f1ee11758fb7 Mon Sep 17 00:00:00 2001 From: Brian Kohan Date: Tue, 30 Jul 2024 15:53:51 -0700 Subject: [PATCH] fix comment size on howto example --- tests/apps/howto/management/commands/groups.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/apps/howto/management/commands/groups.py b/tests/apps/howto/management/commands/groups.py index 5214042a..b81cc457 100644 --- a/tests/apps/howto/management/commands/groups.py +++ b/tests/apps/howto/management/commands/groups.py @@ -4,8 +4,9 @@ class Command(TyperCommand): @group() def group1(self, common_option: bool = False): - # you can define common options that will be available to all subcommands - # of the group, and implement common initialization logic here. + # you can define common options that will be available to all + # subcommands of the group, and implement common initialization + # logic here. ... @group()