Skip to content

Commit 8a1e655

Browse files
committed
Fix typing problems
1 parent 38abea4 commit 8a1e655

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def _public_path(obj: griffe.Object | griffe.Alias) -> bool:
140140
return obj.is_public and (obj.parent is None or _public_path(obj.parent))
141141

142142
multiple_locations = {}
143-
for obj_name in set(griffe.__all__) - set(griffe.__cli_all__):
143+
for obj_name in set(griffe.__all__) - griffe._CLI_MISSING_FEATURES:
144144
obj = public_api[obj_name]
145145
if obj.aliases and (
146146
public_aliases := [path for path, alias in obj.aliases.items() if path != obj.path and _public_path(alias)]

0 commit comments

Comments
 (0)