mirror of https://github.com/langgenius/dify.git
lint
This commit is contained in:
parent
b7c6cba23f
commit
603b1e9ed4
|
|
@ -1,7 +1,6 @@
|
|||
from flask_restful import Resource, reqparse
|
||||
|
||||
from controllers.console import api
|
||||
from controllers.console.app.wraps import get_app_model
|
||||
from controllers.console.setup import setup_required
|
||||
from controllers.console.wraps import account_initialization_required
|
||||
from core.entities.application_entities import AppMode
|
||||
|
|
|
|||
|
|
@ -5,8 +5,8 @@ Revises: 16830a790f0f
|
|||
Create Date: 2024-02-19 12:47:24.646954
|
||||
|
||||
"""
|
||||
from alembic import op
|
||||
import sqlalchemy as sa
|
||||
from alembic import op
|
||||
from sqlalchemy.dialects import postgresql
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ from extensions.ext_database import db
|
|||
from libs.helper import generate_string
|
||||
|
||||
from .account import Account, Tenant
|
||||
from .workflow import WorkflowRun, Workflow
|
||||
from .workflow import Workflow, WorkflowRun
|
||||
|
||||
|
||||
class DifySetup(db.Model):
|
||||
|
|
|
|||
Loading…
Reference in New Issue