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

Bump the python-dependencies group with 2 updates #354

Merged
merged 2 commits into from
Oct 28, 2024
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
82 changes: 44 additions & 38 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ setuptools = "^70.3"

[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0"
mypy = "~1.11"
mypy = "~1.13"
django-stubs = {extras = ["compatible-mypy"], version = "~5.1"}
types-beautifulsoup4 = "^4.12"
pytest = "^8.3"
Expand Down
4 changes: 2 additions & 2 deletions utils/tex_bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ def group_full_name(self) -> str:
The group-full-name is either retrieved from the provided environment variable
or automatically identified from the name of your group's Discord guild.
"""
return ( # type: ignore[no-any-return]
return (
settings["_GROUP_FULL_NAME"]
if settings["_GROUP_FULL_NAME"]
else (
Expand All @@ -312,7 +312,7 @@ def group_short_name(self) -> str:
This defaults to `TeXBot.group_full_name`,
if no group-short-name is provided/could not be determined.
"""
return ( # type: ignore[no-any-return]
return (
settings["_GROUP_SHORT_NAME"]
if settings["_GROUP_SHORT_NAME"]
else (
Expand Down