From 0d5c9b78f76cffa67cd3e92e0bc18bc9e0689b93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sofus=20Albert=20H=C3=B8gsbro=20Rose?= Date: Thu, 3 Oct 2024 07:14:22 +0200 Subject: [PATCH] fix: Wrong string type a function annotation --- oscillode/assets/geonodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscillode/assets/geonodes.py b/oscillode/assets/geonodes.py index f7fdf2d..38c6e60 100644 --- a/oscillode/assets/geonodes.py +++ b/oscillode/assets/geonodes.py @@ -105,7 +105,7 @@ class GeoNodes(enum.StrEnum): ArrayRing = 'array_ring' @property - def dedicated_node_type(self) -> ct.BLImportMethod: + def dedicated_node_type(self) -> str: ## TODO: How to correlate to node_tree? """Deduces the denode type that implements a vendored GeoNodes tree (usually just "GeoNodes Structure"). Generally, "GeoNodes Structure' is the generic triangle-mesh node that can do everything.