We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38abea4 commit 8a1e655Copy full SHA for 8a1e655
1 file changed
tests/test_api.py
@@ -140,7 +140,7 @@ def _public_path(obj: griffe.Object | griffe.Alias) -> bool:
140
return obj.is_public and (obj.parent is None or _public_path(obj.parent))
141
142
multiple_locations = {}
143
- for obj_name in set(griffe.__all__) - set(griffe.__cli_all__):
+ for obj_name in set(griffe.__all__) - griffe._CLI_MISSING_FEATURES:
144
obj = public_api[obj_name]
145
if obj.aliases and (
146
public_aliases := [path for path, alias in obj.aliases.items() if path != obj.path and _public_path(alias)]
0 commit comments