mirror of
https://github.com/rzmk/learnhouse.git
synced 2025-12-18 20:09:25 +00:00
refactor: remove unused logfire import and adjust SQLModel imports for consistency
This commit is contained in:
parent
0db916c512
commit
5b192290f0
2 changed files with 2 additions and 2 deletions
|
|
@ -1,5 +1,4 @@
|
|||
import logging
|
||||
import logfire
|
||||
import os
|
||||
import importlib
|
||||
from config.config import get_learnhouse_config
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
from typing import Optional
|
||||
from pydantic import BaseModel
|
||||
from sqlmodel import Field, SQLModel, JSON, Column
|
||||
from sqlalchemy import JSON, Column
|
||||
from sqlmodel import Field, SQLModel
|
||||
from src.db.roles import RoleRead
|
||||
|
||||
from src.db.organization_config import OrganizationConfig
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue