Import assets seeder later, print some package versions. (#12841)

This commit is contained in:
comfyanonymous
2026-03-08 13:25:30 -07:00
committed by GitHub
parent 7723f20bbe
commit e4b0bb8305
2 changed files with 12 additions and 2 deletions

View File

@@ -3,8 +3,12 @@ import os
from contextlib import contextmanager
from dataclasses import dataclass
from typing import IO, Any, Callable, Iterator
import logging
from blake3 import blake3
try:
from blake3 import blake3
except ModuleNotFoundError:
logging.warning("WARNING: blake3 package not installed")
DEFAULT_CHUNK = 8 * 1024 * 1024