Fix pylint error

This commit is contained in:
doctorpangloss 2025-01-22 10:41:23 -08:00
parent b1bcf082af
commit 2d4e579503

View File

@ -7,11 +7,12 @@ import torch
import torch.nn
from typing_extensions import TypedDict, NotRequired
from comfy.latent_formats import LatentFormat
from .latent_formats import LatentFormat
ModelManageableT = TypeVar('ModelManageableT', bound='ModelManageable')
LatentFormatT = TypeVar('LatentFormatT', bound=LatentFormat)
@runtime_checkable
class DeviceSettable(Protocol):
@property