Browse Source

Fix incorrect type hint for `ExportManager.get_scene_node()`.

pull/374/head
Adam Johnson 12 months ago
parent
commit
3f1009ee4a
Signed by: Hoikas
GPG Key ID: 0B6515D6FF6F271E
  1. 2
      korman/exporter/manager.py

2
korman/exporter/manager.py

@ -317,7 +317,7 @@ class ExportManager:
def get_scene_node( def get_scene_node(
self, location: Optional[plLocation] = None, self, location: Optional[plLocation] = None,
bl: Optional[bpy.types.Object]=None bl: Optional[bpy.types.Object]=None
) -> plSceneNode: ) -> plKey[plSceneNode]:
"""Gets a Plasma Page's plSceneNode key""" """Gets a Plasma Page's plSceneNode key"""
assert (location is not None) ^ (bl is not None) assert (location is not None) ^ (bl is not None)

Loading…
Cancel
Save