Skip to content

Commit

Permalink
deps: bump aiohttp dependency to version 3.11.10
Browse files Browse the repository at this point in the history
  • Loading branch information
null8626 committed Dec 6, 2024
1 parent cc1441a commit fba3570
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def __init__(self, header_name: str):
def append(self, row_contents: str) -> None:
self.character_length = max(
self.character_length,
max(map(lambda content: len(list(content)), row_contents.splitlines())),
max(len(list(content)) for content in row_contents.splitlines()),
)
self.rows.append(row_contents)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "null8626" }]
keywords = ["weather", "forecast", "weather-api", "weather-forecast"]
dependencies = ["aiohttp>=3.11.7"]
dependencies = ["aiohttp>=3.11.10"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Education",
Expand Down

0 comments on commit fba3570

Please sign in to comment.