Skip to content

Commit

Permalink
test: strategy: fail-fast: false
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss committed Oct 12, 2024
1 parent 25d50a4 commit 1811ba1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion autoapi/inheritance_diagrams.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ def _import_class(name, currmodule):

if isinstance(target, astroid.Module):
return [
child for child in target.get_children()
child
for child in target.get_children()
if isinstance(child, astroid.ClassDef)
]

Expand Down

0 comments on commit 1811ba1

Please sign in to comment.