Skip to content

Commit 0a3c600

Browse files
Apply formatter
1 parent aefe7bb commit 0a3c600

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tests/usethis/_ui/test_options.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ def test_no_duplicate_help_text(self):
99
help_texts: dict[str, str] = {}
1010
for name in dir(options_module):
1111
obj = getattr(options_module, name)
12-
if not isinstance(obj, (typer.models.OptionInfo, typer.models.ArgumentInfo)):
12+
if not isinstance(
13+
obj, (typer.models.OptionInfo, typer.models.ArgumentInfo)
14+
):
1315
continue
1416
help_text = obj.help
1517
if help_text is None:

0 commit comments

Comments
 (0)