Skip to content

Commit

Permalink
Ignore setup.py, tests; rename jsonb.py
Browse files Browse the repository at this point in the history
  • Loading branch information
intgr committed Apr 27, 2023
1 parent cd0be35 commit 99ce4b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

from django.forms import JSONField as BuiltinJSONField


# Deprecated, removed in 4.0
class JSONField(BuiltinJSONField):
def __init__(self, *args: Any, **kwargs: Any) -> None:
...
def __init__(self, *args: Any, **kwargs: Any) -> None: ...
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ exclude = .*/
extend-ignore = E203
max_line_length = 120
per-file-ignores =
*.pyi: B, E301, E302, E305, E501, E701, E741, E743, NQA102, F401, F403, F405, F822, Y021, Y024, Y041, Y043, INP001
*.pyi: B, E301, E302, E305, E501, E701, E741, E743, NQA102, F401, F403, F405, F822, Y021, Y024, Y041, Y043
setup.py: INP001
*/tests/*.py: INP001

[metadata]
license_file = LICENSE.txt

0 comments on commit 99ce4b7

Please sign in to comment.