diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 8d3658b..0680655 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -8,4 +8,4 @@ - Add function to format a list human-readable - Add function to assert that an object is an instance of a specific type - Add python project documentation generator class -- Add namespaces classes \ No newline at end of file +- Add python namespaces classes \ No newline at end of file diff --git a/src/jcloud_docsgen/core/python/__init__.py b/src/jcloud_docsgen/core/python/__init__.py index ff6348c..f43ecb5 100644 --- a/src/jcloud_docsgen/core/python/__init__.py +++ b/src/jcloud_docsgen/core/python/__init__.py @@ -14,7 +14,9 @@ from ._core import * from ._core import __all__ as _core__all__ +from . import namespaces all = [ - *_core__all__ + *_core__all__, + 'namespaces' ] \ No newline at end of file