Skip to content

Commit

Permalink
Never skip modules and packages
Browse files Browse the repository at this point in the history
  • Loading branch information
sachahu1 committed Jun 13, 2024
1 parent 8001fbd commit 45a074e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions autoapi/_objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -408,12 +408,18 @@ class PythonModule(TopLevelPythonPythonMapper):

type = "module"

def _should_skip(self) -> bool:
return False


class PythonPackage(TopLevelPythonPythonMapper):
"""The representation of a package."""

type = "package"

def _should_skip(self) -> bool:
return False


class PythonClass(PythonObject):
"""The representation of a class."""
Expand Down

0 comments on commit 45a074e

Please sign in to comment.