From a44197d71873cc7abe375d7b966c732e613a28df Mon Sep 17 00:00:00 2001 From: tmadlener Date: Mon, 13 Nov 2023 10:39:30 +0100 Subject: [PATCH] Expose Mutable classes in python bindings Since the default classes have no really usable public constructor any longer, exposing the Mutable classes for python makes more sense. --- python/templates/selection.xml.jinja2 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/templates/selection.xml.jinja2 b/python/templates/selection.xml.jinja2 index 61d9a7a9c..9fb4934c2 100644 --- a/python/templates/selection.xml.jinja2 +++ b/python/templates/selection.xml.jinja2 @@ -29,7 +29,7 @@ {# Otherwise the python interface does not work in gcc builds #} {# Additionally, in order to allow "direct" access to the user facing classes #} {# we have to declare them here, otherwise they cannot be easily imported #} -{{ class_selection(class) }} +{{ class_selection(class, prefix='Mutable') }} {{ class_selection(class, postfix='Collection') }} {% endfor %}