Skip to content

Commit

Permalink
Bump flake8-bugbear from 22.1.11 to 24.4.21 (#196)
Browse files Browse the repository at this point in the history
* Bump flake8-bugbear from 22.1.11 to 24.4.21

Bumps [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) from 22.1.11 to 24.4.21.
- [Release notes](https://github.com/PyCQA/flake8-bugbear/releases)
- [Commits](PyCQA/flake8-bugbear@22.1.11...24.4.21)

---
updated-dependencies:
- dependency-name: flake8-bugbear
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Suppress lint

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Amethyst Reese <[email protected]>
  • Loading branch information
dependabot[bot] and amyreese authored Apr 23, 2024
1 parent 855243b commit e6408ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aiomultiprocess/pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ async def run(self) -> None:
tb = None
try:
result = future.result()
except BaseException as e:
except BaseException as e: # noqa: B036
if self.exception_handler is not None:
self.exception_handler(e)

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dev = [
"black==24.4.0",
"coverage==7.4.4",
"flake8==7.0.0",
"flake8-bugbear==22.1.11",
"flake8-bugbear==24.4.21",
"flit==3.9.0",
"mypy==0.931",
"usort==1.0.8.post1",
Expand Down

0 comments on commit e6408ab

Please sign in to comment.