Skip to content

Commit

Permalink
Consolidate SQLAlchemy model imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ahdamin committed Oct 7, 2024
1 parent 5df584c commit f246d49
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions genotype_api/database/models.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
from collections import Counter
from datetime import datetime
from sqlalchemy import Integer, DateTime
from sqlalchemy.orm import relationship
from sqlalchemy import (
Column,
ForeignKey,
String,
)
from sqlalchemy.orm import DeclarativeBase

from sqlalchemy import Column, DateTime, ForeignKey, Integer, String
from sqlalchemy.orm import DeclarativeBase, relationship
from sqlalchemy_utils import EmailType


Expand Down

0 comments on commit f246d49

Please sign in to comment.