We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aefe7bb commit 0a3c600Copy full SHA for 0a3c600
1 file changed
tests/usethis/_ui/test_options.py
@@ -9,7 +9,9 @@ def test_no_duplicate_help_text(self):
9
help_texts: dict[str, str] = {}
10
for name in dir(options_module):
11
obj = getattr(options_module, name)
12
- if not isinstance(obj, (typer.models.OptionInfo, typer.models.ArgumentInfo)):
+ if not isinstance(
13
+ obj, (typer.models.OptionInfo, typer.models.ArgumentInfo)
14
+ ):
15
continue
16
help_text = obj.help
17
if help_text is None:
0 commit comments