From 7f6fffb25e4f42495e8b070251f0fb820281134a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 23 Apr 2024 01:54:34 -0700 Subject: [PATCH] Bump black from 22.12.0 to 24.4.0 (#117) * Bump black from 22.12.0 to 24.4.0 Bumps [black](https://github.com/psf/black) from 22.12.0 to 24.4.0. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](https://github.com/psf/black/compare/22.12.0...24.4.0) --- updated-dependencies: - dependency-name: black dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Fix formatting/lint --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Amethyst Reese --- .flake8 | 1 + aql/table.py | 13 +++++++------ pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.flake8 b/.flake8 index 8dad0a3..692e619 100644 --- a/.flake8 +++ b/.flake8 @@ -8,6 +8,7 @@ ignore = E2 E3 E4 + E704 max-line-length = 88 per-file-ignores = __init__.py: F401 diff --git a/aql/table.py b/aql/table.py index 3603c89..5d76715 100644 --- a/aql/table.py +++ b/aql/table.py @@ -106,18 +106,19 @@ def delete(self) -> Query: @overload -def table(cls_or_name: Type[T], *args: Index) -> Table[T]: - ... # pragma: no cover +def table(cls_or_name: Type[T], *args: Index) -> Table[T]: ... # pragma: no cover @overload -def table(cls_or_name: str, *args: Index) -> Callable[[Type[T]], Table[T]]: - ... # pragma: no cover +def table( + cls_or_name: str, *args: Index +) -> Callable[[Type[T]], Table[T]]: ... # pragma: no cover @overload -def table(cls_or_name: Index, *args: Index) -> Callable[[Type[T]], Table[T]]: - ... # pragma: no cover +def table( + cls_or_name: Index, *args: Index +) -> Callable[[Type[T]], Table[T]]: ... # pragma: no cover def table(cls_or_name, *args: Index): diff --git a/pyproject.toml b/pyproject.toml index 0f4678b..1b2b95f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,7 +31,7 @@ dev = [ "aiounittest==1.4.1", "attribution==1.7.1", "attrs==22.1.0", - "black==22.12.0", + "black==24.4.0", "coverage==7.4.4", "flake8==7", "flake8-bugbear==24.4.21",