fix: Wrong string type a function annotation

uv-refactor
Sofus Albert Høgsbro Rose 2024-10-03 07:14:22 +02:00
parent fdcd52e937
commit 0d5c9b78f7
Signed by: so-rose
GPG Key ID: AD901CB0F3701434
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ class GeoNodes(enum.StrEnum):
ArrayRing = 'array_ring' ArrayRing = 'array_ring'
@property @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"). """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. Generally, "GeoNodes Structure' is the generic triangle-mesh node that can do everything.