updated the declarative base import (#1108)

This commit is contained in:
Achintya Jai 2025-07-28 19:47:58 +05:30 committed by GitHub
parent 9a0006ea42
commit e04fd1c17e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View File

View File

@ -1,5 +1,5 @@
from sqlalchemy import Column, Integer, Text, DateTime
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import declarative_base
Base = declarative_base()