Skip to content

Commit

Permalink
Revert "chore: fix test and lint packages versions"
Browse files Browse the repository at this point in the history
This reverts commit c47e085.
  • Loading branch information
Helias committed Feb 25, 2024
1 parent c47e085 commit a17fced
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ dynamic = ['version']
# Can be installed with `pip install telegram-spotted-dmi-bot[dependency]`
# e.g. `pip install telegram-spotted-dmi-bot[test]`
[project.optional-dependencies]
test = ["pytest==7.1.1", "pytest-asyncio==0.23.5", "pytest-cov==3.0.0", "pytest-mock==3.12.0"]
lint = ["pylint==2.12.2", "black==24.2.0", "isort==5.10.1"]
test = ["pytest", "pytest-asyncio", "pytest-cov", "pytest-mock"]
lint = ["pylint", "black", "isort"]

# URLs of the project
[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion src/spotted/handlers/spam_comment.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from spotted.utils import EventInfo


async def spam_comment_msg(update: Update, context: CallbackContext) -> None:
async def spam_comment_msg(update: Update, context: CallbackContext):
"""Handles a spam comment on a post in the comment group.
Deletes the original post.
Expand Down

0 comments on commit a17fced

Please sign in to comment.