Skip to content

Commit 3aa39a0

Browse files
committed
Format test code for clarity
See: aboutcode-org/scancode-toolkit#2529 Signed-off-by: Philippe Ombredanne <pombredanne@nexb.com>
1 parent bd127b3 commit 3aa39a0

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

tests/test_cliutils.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,13 @@ def test_GroupedHelpCommand_help_with_group(self):
138138
from commoncode.cliutils import CORE_GROUP
139139

140140
@click.command(name='scan', cls=GroupedHelpCommand)
141-
@click.option('--opt', is_flag=True, help='Help text for option',
142-
help_group=CORE_GROUP, cls=PluggableCommandLineOption)
141+
@click.option(
142+
'--opt',
143+
is_flag=True,
144+
help='Help text for option',
145+
help_group=CORE_GROUP,
146+
cls=PluggableCommandLineOption,
147+
)
143148
def scan(opt):
144149
pass
145150

0 commit comments

Comments
 (0)