1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 23:14:49 +08:00

Fix typo in last PR. (#8144)

More robust model detection for future proofing.
This commit is contained in:
comfyanonymous
2025-05-15 16:02:19 -07:00
committed by GitHub
parent c820ef950d
commit 1c2d45d2b5
3 changed files with 5 additions and 3 deletions

View File

@@ -148,7 +148,7 @@ def get_camera_motion(angle, T, speed, n=81):
RT = np.stack(RT)
return RT
class WanCameraEmbeding:
class WanCameraEmbedding:
@classmethod
def INPUT_TYPES(cls):
return {
@@ -214,5 +214,5 @@ class WanCameraEmbeding:
NODE_CLASS_MAPPINGS = {
"WanCameraEmbeding": WanCameraEmbeding,
"WanCameraEmbedding": WanCameraEmbedding,
}