Skip to content
Merged
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
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Flask==3.0.0
Flask-SQLAlchemy==3.1.1
Flask-Login==0.6.3
email-validator==2.3.0
pytest==8.0.0
pytest-cov==4.1.0
pydantic==2.12.0
Expand Down
2 changes: 1 addition & 1 deletion service/stream_type_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Provides methods to find and manage the predefined stream types from spec 003.
"""

from typing import Optional, List
from typing import Optional, List, Dict
from model.repository.stream_type_repository import StreamTypeRepository
from model.dto.stream_type import StreamTypeDTO

Expand Down
2 changes: 1 addition & 1 deletion specs/feature/feat-auth-layer.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
user_name: str
email: str
hash_password: str
last_modiied_at: datetime
last_modified_at: datetime
role: str # 'user' or 'admin'
```

Expand Down
Loading