From 9e2fe5f2dfb20aa0bf321860cc77ef138fb3572f Mon Sep 17 00:00:00 2001 From: Jakob Scheid Date: Thu, 9 Apr 2026 17:32:54 +0200 Subject: [PATCH] Change python package namespace sub namespaces to list --- src/jcloud_docsgen/exceptions.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/jcloud_docsgen/exceptions.py b/src/jcloud_docsgen/exceptions.py index f6922d4..3cbc18f 100644 --- a/src/jcloud_docsgen/exceptions.py +++ b/src/jcloud_docsgen/exceptions.py @@ -27,4 +27,5 @@ class NamespaceError(ValueError): return f'{self.args[0]}{": " if self.namespace_identifier and self.args[0] else ""}{self.namespace_identifier if self.args[0] else ""}' class InvalidNamespaceError(NamespaceError): ... -class NamespaceNotFoundError(NamespaceError): ... \ No newline at end of file +class NamespaceNotFoundError(NamespaceError): ... +class NamespaceExistsError(NamespaceError): ... \ No newline at end of file