From 0f817e961c8bc0009354fc1a703aabfef4450e29 Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Tue, 7 Apr 2026 14:18:54 +0200 Subject: [PATCH] Add python namespaces classes --- docs/CHANGELOG.md | 2 +- src/jcloud_docsgen/core/python/__init__.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) 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