Skip to content

Commit

Permalink
Bump black from 22.12.0 to 24.4.0 (#117)
Browse files Browse the repository at this point in the history
* 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](psf/black@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] <support@github.com>

* Fix formatting/lint

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Amethyst Reese <amethyst@n7.gg>
  • Loading branch information
dependabot[bot] and amyreese authored Apr 23, 2024
1 parent 2adc0db commit 7f6fffb
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
1 change: 1 addition & 0 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ ignore =
E2
E3
E4
E704
max-line-length = 88
per-file-ignores =
__init__.py: F401
13 changes: 7 additions & 6 deletions aql/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 7f6fffb

Please sign in to comment.