Skip to content

Commit

Permalink
make async913 disabled by default (#259)
Browse files Browse the repository at this point in the history
  • Loading branch information
jakkdl authored May 28, 2024
1 parent 9391c09 commit 315cd5f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Changelog

*[CalVer, YY.month.patch](https://calver.org/)*

24.5.6
======
- Make :ref:`ASYNC913 <async913>` disabled by default, as originally intended.

24.5.5
======
- Add :ref:`ASYNC300 <async300>` create-task-no-reference
Expand Down
2 changes: 1 addition & 1 deletion flake8_async/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@


# CalVer: YY.month.patch, e.g. first release of July 2022 == "22.7.1"
__version__ = "24.5.5"
__version__ = "24.5.6"


# taken from https://github.com/Zac-HD/shed
Expand Down
2 changes: 1 addition & 1 deletion flake8_async/visitors/visitor91x.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def leave_Yield(
leave_Return = leave_Yield # type: ignore


disable_codes_by_default("ASYNC910", "ASYNC911", "ASYNC912")
disable_codes_by_default("ASYNC910", "ASYNC911", "ASYNC912", "ASYNC913")


@error_class_cst
Expand Down

0 comments on commit 315cd5f

Please sign in to comment.