mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
re-run isort
This commit is contained in:
parent
72c34aea75
commit
db9cef0092
@ -2,16 +2,16 @@
|
||||
"""FastAPI route for model configuration records."""
|
||||
|
||||
|
||||
from hashlib import sha1
|
||||
from random import randbytes
|
||||
from typing import List, Optional
|
||||
|
||||
from fastapi import Body, Path, Query, Response
|
||||
from fastapi.routing import APIRouter
|
||||
from pydantic import BaseModel, ConfigDict, TypeAdapter
|
||||
from random import randbytes
|
||||
from hashlib import sha1
|
||||
from starlette.exceptions import HTTPException
|
||||
|
||||
from invokeai.app.services.model_records import UnknownModelException, DuplicateModelException, InvalidModelException
|
||||
from invokeai.app.services.model_records import DuplicateModelException, InvalidModelException, UnknownModelException
|
||||
from invokeai.backend.model_manager.config import AnyModelConfig, BaseModelType, ModelType
|
||||
|
||||
from ..dependencies import ApiDependencies
|
||||
|
@ -1,7 +1,7 @@
|
||||
from .model_records_base import (
|
||||
DuplicateModelException,
|
||||
InvalidModelException,
|
||||
ModelRecordServiceBase,
|
||||
UnknownModelException,
|
||||
InvalidModelException,
|
||||
)
|
||||
from .model_records_sql import ModelRecordServiceSQL
|
||||
|
Loading…
Reference in New Issue
Block a user