From 3f1009ee4a4d279f39b3c6a29659866a6b6ee5e3 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sun, 11 Jun 2023 18:35:31 -0400 Subject: [PATCH] Fix incorrect type hint for `ExportManager.get_scene_node()`. --- korman/exporter/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/exporter/manager.py b/korman/exporter/manager.py index b245750..f404075 100644 --- a/korman/exporter/manager.py +++ b/korman/exporter/manager.py @@ -317,7 +317,7 @@ class ExportManager: def get_scene_node( self, location: Optional[plLocation] = None, bl: Optional[bpy.types.Object]=None - ) -> plSceneNode: + ) -> plKey[plSceneNode]: """Gets a Plasma Page's plSceneNode key""" assert (location is not None) ^ (bl is not None)