style(ctrlregen): sort imports (follow-up to #11)

#11 left the import block un-sorted (ruff I001); reorder so diffusers
precedes the local ctrlregen import.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
test-user
2026-05-25 09:21:53 -07:00
parent d091b9f822
commit e60f183d29
@@ -36,9 +36,10 @@ _HAS_COLOR_MATCHER = False
_HAS_DIFFUSERS = False
try:
from remove_ai_watermarks.noai.ctrlregen.pipeline import CustomCtrlRegenPipeline
from diffusers import AutoencoderKL, ControlNetModel, UniPCMultistepScheduler
from remove_ai_watermarks.noai.ctrlregen.pipeline import CustomCtrlRegenPipeline
_HAS_DIFFUSERS = True
except ImportError:
AutoencoderKL = None # type: ignore[assignment,misc]