Skip to content

Commit

Permalink
fix: fix codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
belyakova-anna committed Oct 26, 2024
1 parent d5a4dc5 commit 9dfff58
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 0 additions & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,3 @@ services:
ports:
- "8000:8000"
env_file: .env

2 changes: 1 addition & 1 deletion src/modules/users/routes.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from datetime import datetime, timedelta, tzinfo, timezone
from datetime import datetime, timedelta, timezone

import httpx
from fastapi import APIRouter
Expand Down
2 changes: 2 additions & 0 deletions src/modules/users/schemas.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

from src.pydantic_base import BaseSchema


class Profile(BaseSchema):
id: str
"User id on sports website"
Expand All @@ -14,6 +15,7 @@ class Profile(BaseSchema):
medical_group: str
"User medical group for sport"


class Checkin(BaseSchema):
title: str
"Sport name"
Expand Down

0 comments on commit 9dfff58

Please sign in to comment.