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
6 changes: 3 additions & 3 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ django==5.2.8
# via
# django-telegram-app
# ida (pyproject.toml)
django-telegram-app==0.1.4
django-telegram-app==0.2.0
# via ida (pyproject.toml)
django-types==0.22.0
# via ida (pyproject.toml)
Expand All @@ -44,7 +44,7 @@ pillow==12.0.0
# via reportlab
platformdirs==4.5.0
# via pylint
pylint==4.0.2
pylint==4.0.3
# via ida (pyproject.toml)
pyright==1.1.407
# via ida (pyproject.toml)
Expand All @@ -54,7 +54,7 @@ reportlab==4.4.4
# via ida (pyproject.toml)
requests==2.32.5
# via django-telegram-app
ruff==0.14.4
ruff==0.14.5
# via ida (pyproject.toml)
sqlparse==0.5.3
# via django
Expand Down
2 changes: 1 addition & 1 deletion requirements/main.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ django==5.2.8
# via
# django-telegram-app
# ida (pyproject.toml)
django-telegram-app==0.1.4
django-telegram-app==0.2.0
# via ida (pyproject.toml)
envyronment==0.4.0
# via ida (pyproject.toml)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""Django command to start the CompleteTimesheet command for active users with a chat_id."""

from django.utils import timezone
from django_telegram_app.management.base import TelegramCommand
from django_telegram_app.management.base import BaseTelegramCommand


class Command(TelegramCommand):
class Command(BaseTelegramCommand):
"""Start the CompleteTimesheet command."""

help = "Start the CompleteTimesheet command to let users complete their timesheets."
Expand Down
4 changes: 2 additions & 2 deletions src/apps/timesheets/management/commands/startregisterwork.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""Django command to start a RegisterWork command for active users with a chat_id."""

from django.utils import timezone
from django_telegram_app.management.base import TelegramCommand
from django_telegram_app.management.base import BaseTelegramCommand


class Command(TelegramCommand):
class Command(BaseTelegramCommand):
"""Start a RegisterWork command."""

help = "Start a RegisterWork command to let users register their work hours."
Expand Down