Skip to content

Commit

Permalink
feat(pep_0585):
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikstranneheim committed Mar 8, 2024
1 parent 05ac470 commit 28ae01a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions genotype_api/database/crud/read.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import logging
list[, Optional
from typing import Optional

from sqlalchemy import func
from sqlmodel import Session, select
from sqlmodel.sql.expression import Select, SelectOfScalar

from genotype_api.constants import TYPES
from genotype_api.database.models.models import Analysis, Sample, User, Plate
from sqlmodel.sql.expression import Select, SelectOfScalar
from genotype_api.database.models.models import Analysis, Plate, Sample, User

SelectOfScalar.inherit_cache = True
Select.inherit_cache = True
Expand Down

0 comments on commit 28ae01a

Please sign in to comment.