Skip to content
This repository has been archived by the owner on Sep 27, 2024. It is now read-only.

Commit

Permalink
Verwijderen JsonRepresentable #27
Browse files Browse the repository at this point in the history
  • Loading branch information
lbarraga committed Mar 1, 2024
1 parent 45e6a88 commit 3050db8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions backend/db/implementation/SqlAbstractDAO.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
from typing import Generic, TypeVar

from pydantic import BaseModel
from sqlalchemy import select
from sqlalchemy.orm import Session

from pydantic import BaseModel

from db.errors.database_errors import ItemNotFoundError
from db.extensions import engine
from db.models.models import AbstractModel


T = TypeVar("T", bound=AbstractModel)
D = TypeVar("D", bound=BaseModel)

Expand Down

0 comments on commit 3050db8

Please sign in to comment.