From 322fbe27d6caf60aca0dbbb345eb68a31737ad18 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Thu, 28 Aug 2025 11:13:42 +0200 Subject: [PATCH] Python 3.10 compatibility --- src/ifcopenshell-python/ifcopenshell/util/doc.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/ifcopenshell/util/doc.py b/src/ifcopenshell-python/ifcopenshell/util/doc.py index 029f797e19..41d6189fe4 100644 --- a/src/ifcopenshell-python/ifcopenshell/util/doc.py +++ b/src/ifcopenshell-python/ifcopenshell/util/doc.py @@ -23,7 +23,8 @@ import ifcopenshell import ifcopenshell.ifcopenshell_wrapper as ifcopenshell_wrapper import ifcopenshell.util.attribute import ifcopenshell.util.schema -from typing import Optional, Literal, Any, Union, TypedDict, NotRequired +from typing import Optional, Literal, Any, Union, TypedDict +from typing_extensions import NotRequired try: import glob