Skip to content

Commit e6408ab

Browse files
Bump flake8-bugbear from 22.1.11 to 24.4.21 (#196)
* 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] <support@github.com> * Suppress 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>
1 parent 855243b commit e6408ab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

aiomultiprocess/pool.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ async def run(self) -> None:
108108
tb = None
109109
try:
110110
result = future.result()
111-
except BaseException as e:
111+
except BaseException as e: # noqa: B036
112112
if self.exception_handler is not None:
113113
self.exception_handler(e)
114114

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ dev = [
2828
"black==24.4.0",
2929
"coverage==7.4.4",
3030
"flake8==7.0.0",
31-
"flake8-bugbear==22.1.11",
31+
"flake8-bugbear==24.4.21",
3232
"flit==3.9.0",
3333
"mypy==0.931",
3434
"usort==1.0.8.post1",

0 commit comments

Comments
 (0)