Skip to content

Commit

Permalink
Bump flake8-bugbear from 23.11.28 to 24.1.16 (#421)
Browse files Browse the repository at this point in the history
* Bump flake8-bugbear from 23.11.28 to 24.1.16

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

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

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

* Suppress B038

---------

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 Jan 23, 2024
1 parent f2633a8 commit 143c013
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ dev = [
"attribution == 1.6.2",
"black == 23.12.1",
"flake8 == 6.1.0",
"flake8-bugbear == 23.11.28",
"flake8-bugbear == 24.1.16",
"mypy == 1.8.0",
"ufmt == 2.3.0",
"usort == 1.0.7",
Expand Down
2 changes: 1 addition & 1 deletion src/fixit/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ def fix(
"Apply autofix?", default="y", type=click.Choice("ynq", False)
)
if answer == "y":
generator.respond(True)
generator.respond(True) # noqa: B038
fixed += 1
elif answer == "q":
break
Expand Down

0 comments on commit 143c013

Please sign in to comment.