From c6b8e9662ebebc0fd887e77ee6824287bc490151 Mon Sep 17 00:00:00 2001 From: huchenlei Date: Tue, 25 Feb 2025 11:16:52 -0500 Subject: [PATCH] nit --- comfy_extras/nodes_audio.py | 2 ++ comfy_extras/nodes_images.py | 2 ++ comfy_extras/nodes_video.py | 2 ++ 3 files changed, 6 insertions(+) diff --git a/comfy_extras/nodes_audio.py b/comfy_extras/nodes_audio.py index 7609b35c..136ad615 100644 --- a/comfy_extras/nodes_audio.py +++ b/comfy_extras/nodes_audio.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import torchaudio import torch import comfy.model_management diff --git a/comfy_extras/nodes_images.py b/comfy_extras/nodes_images.py index 3503fb99..e11a4583 100644 --- a/comfy_extras/nodes_images.py +++ b/comfy_extras/nodes_images.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import nodes import folder_paths from comfy.cli_args import args diff --git a/comfy_extras/nodes_video.py b/comfy_extras/nodes_video.py index 8e7f6b97..cac63348 100644 --- a/comfy_extras/nodes_video.py +++ b/comfy_extras/nodes_video.py @@ -1,3 +1,5 @@ +from __future__ import annotations + import os import av import torch