Skip to content

Commit 26f2406

Browse files
committed
Remove no-pep420 linter rule.
1 parent e0233a7 commit 26f2406

File tree

4 files changed

+1
-6
lines changed

4 files changed

+1
-6
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ select = [
158158
"EXE", # flake8-executable
159159
"RET", # flake8-return
160160
"ICN", # flake8-import-conventions
161-
"INP", # flake8-no-pep420
162161
"PIE", # flake8-pie
163162
"PT", # flake8-pytest-style
164163
"SIM", # flake8-simplify

scripts/generate_charmap_table.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313

1414
import tcod.tileset
1515

16-
# ruff: noqa: INP001
17-
1816

1917
def get_charmaps() -> Iterator[str]:
2018
"""Return an iterator of the current character maps from tcod.tilest."""

scripts/get_release_description.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
import re
66
from pathlib import Path
77

8-
# ruff: noqa: INP001
9-
108
TAG_BANNER = r"## \[[\w.]*\] - \d+-\d+-\d+\n"
119

1210
RE_BODY = re.compile(rf".*?{TAG_BANNER}(.*?){TAG_BANNER}", re.DOTALL)

scripts/tag_release.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import sys
1111
from pathlib import Path
1212

13-
# ruff: noqa: INP001, S603, S607
13+
# ruff: noqa: S603, S607
1414

1515
PROJECT_DIR = Path(__file__).parent.parent
1616

0 commit comments

Comments
 (0)