fix: import asyncio and add Float import to resolve flake8 undefined name errors
```
This commit is contained in:
ogt (aider)
2026-04-19 21:34:06 +08:00
parent c73b430566
commit 72b047625e
2 changed files with 2 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
from sqlalchemy import Column, Integer, String, DateTime, Text, Boolean, ForeignKey, Index
from sqlalchemy import Column, Integer, String, DateTime, Text, Boolean, ForeignKey, Index, Float
from sqlalchemy.orm import relationship
from database.models import Base
from datetime import datetime

View File

@@ -1,3 +1,4 @@
import asyncio
import logging
from typing import Any, Dict, Optional