From 6945b90b66e1a7ae2d758801540d76224405d226 Mon Sep 17 00:00:00 2001 From: Grzegorz Kowal Date: Tue, 5 Oct 2021 11:11:17 -0300 Subject: [PATCH] PYTHON: Export WriteVTK through the AmunPy interface. Signed-off-by: Grzegorz Kowal --- python/amunpy/src/amunpy/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/python/amunpy/src/amunpy/__init__.py b/python/amunpy/src/amunpy/__init__.py index 8e7ba0c..86d808a 100644 --- a/python/amunpy/src/amunpy/__init__.py +++ b/python/amunpy/src/amunpy/__init__.py @@ -14,8 +14,9 @@ from .amunxml import * from .amunh5 import * from .amunh5_deprecated import * from .integrals import * +from .vtkio import * -__all__ = [ 'AmunXML', 'AmunH5', \ +__all__ = [ 'AmunXML', 'AmunH5', 'WriteVTK', \ 'amun_attribute', 'amun_coordinate', 'amun_dataset', 'amun_dataset_vtk', 'amun_integrals' ] __author__ = "Grzegorz Kowal"