From 65d47ac9164c26c2287efd9e14399911e6fa6f7d Mon Sep 17 00:00:00 2001 From: Christian Oertlin Date: Wed, 3 Apr 2024 12:22:21 +0200 Subject: [PATCH] remove more unused models --- genotype_api/dto/dto.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/genotype_api/dto/dto.py b/genotype_api/dto/dto.py index 5836dda..86c8b49 100644 --- a/genotype_api/dto/dto.py +++ b/genotype_api/dto/dto.py @@ -1,12 +1,5 @@ -from pydantic import constr - - from genotype_api.database import models -class SNPRead(models.SNPBase): - id: constr(max_length=32) - - class PlateCreate(models.PlateBase): analyses: list[models.Analysis] | None = []