diff --git a/docs/changelog.py b/docs/changelog.py index 8c6178d..36398b8 100644 --- a/docs/changelog.py +++ b/docs/changelog.py @@ -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) diff --git a/pyproject.toml b/pyproject.toml index 07b5801..2131465 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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",