From 87bd987ebb802200540c23cfccaba2c56a672ed5 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 24 Jun 2021 14:58:49 +0700 Subject: [PATCH] Make Model available in main openmc namespace --- openmc/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openmc/__init__.py b/openmc/__init__.py index 50246cdd8..8985099ba 100644 --- a/openmc/__init__.py +++ b/openmc/__init__.py @@ -31,7 +31,7 @@ from openmc.search import * from openmc.polynomial import * from . import examples -# Import a few convencience functions that used to be here -from openmc.model import rectangular_prism, hexagonal_prism +# Import a few names from the model module +from openmc.model import rectangular_prism, hexagonal_prism, Model __version__ = '0.13.0-dev'