From 9fea268f31208d10f850331ef23981556fa89c24 Mon Sep 17 00:00:00 2001 From: Min RK Date: Fri, 6 Oct 2023 17:47:53 +0200 Subject: [PATCH] Missing from __future__ import annotations (#2808) prevents failure to import in Python 3.8 Co-authored-by: Garth N. Wells --- python/dolfinx/mesh.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/dolfinx/mesh.py b/python/dolfinx/mesh.py index 41922b1cbc9..4f904a858fd 100644 --- a/python/dolfinx/mesh.py +++ b/python/dolfinx/mesh.py @@ -5,6 +5,8 @@ # SPDX-License-Identifier: LGPL-3.0-or-later """Creation, refining and marking of meshes""" +from __future__ import annotations + import typing