Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DASHBOARD] Erreur dans le calcul et données dynamiques à envoyer au front #269

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions backend/bloom/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
from bloom.config import settings
from fastapi.security import APIKeyHeader
from pydantic import BaseModel, ConfigDict, Field,conint
from pydantic.generics import GenericModel
from datetime import datetime, timedelta
from typing import Generic,TypeVar, List
from enum import Enum
Expand Down Expand Up @@ -49,7 +48,7 @@ class PageParams(BaseModel):

T = TypeVar("T")

class PagedResponseSchema(GenericModel,Generic[T]):
class PagedResponseSchema(BaseModel,Generic[T]):
total: int
limit: int
offset: int
Expand Down
13 changes: 0 additions & 13 deletions backend/bloom/domain/api.py

This file was deleted.

Loading