mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
fix flake8 complaints
This commit is contained in:
parent
db9cef0092
commit
2d051559d1
@ -1,7 +1,8 @@
|
||||
from .model_records_base import (
|
||||
"""Init file for model record services."""
|
||||
from .model_records_base import ( # noqa F401
|
||||
DuplicateModelException,
|
||||
InvalidModelException,
|
||||
ModelRecordServiceBase,
|
||||
UnknownModelException,
|
||||
)
|
||||
from .model_records_sql import ModelRecordServiceSQL
|
||||
from .model_records_sql import ModelRecordServiceSQL # noqa F401
|
||||
|
@ -5,7 +5,7 @@ Abstract base class for storing and retrieving model configuration records.
|
||||
|
||||
from abc import ABC, abstractmethod
|
||||
from pathlib import Path
|
||||
from typing import List, Optional, Set, Union
|
||||
from typing import List, Optional, Union
|
||||
|
||||
from invokeai.backend.model_manager.config import AnyModelConfig, BaseModelType, ModelConfigBase, ModelType
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user