We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 855243b commit e6408abCopy full SHA for e6408ab
aiomultiprocess/pool.py
@@ -108,7 +108,7 @@ async def run(self) -> None:
108
tb = None
109
try:
110
result = future.result()
111
- except BaseException as e:
+ except BaseException as e: # noqa: B036
112
if self.exception_handler is not None:
113
self.exception_handler(e)
114
pyproject.toml
@@ -28,7 +28,7 @@ dev = [
28
"black==24.4.0",
29
"coverage==7.4.4",
30
"flake8==7.0.0",
31
- "flake8-bugbear==22.1.11",
+ "flake8-bugbear==24.4.21",
32
"flit==3.9.0",
33
"mypy==0.931",
34
"usort==1.0.8.post1",
0 commit comments