Skip to content

Commit 5681739

Browse files
Fix linter warnings
1 parent 6c401b2 commit 5681739

File tree

5 files changed

+9
-73
lines changed

5 files changed

+9
-73
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/custom.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/softboiler_github_io_docs/docstrings.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
from myst_parser.parsers.sphinx_ import MystParser
1616
from numpydoc.docscrape import NumpyDocString, Parameter
1717

18-
from softboiler_github_io_docs.types import RegularSection, SeeAlsoSection, SingleSeeAlso
18+
from softboiler_github_io_docs.types import (
19+
RegularSection,
20+
SeeAlsoSection,
21+
SingleSeeAlso,
22+
)
1923

2024
_PARAMETERS_SECTIONS: Final[tuple[str, ...]] = (
2125
"Parameters",

scripts/softboiler_github_io_tools/add_changes.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ def add_change(typ: ChangeType = "change"):
1919
owner, repo, issue = get_issue_from_active_branch()
2020
change = get_change(owner, repo, issue)
2121
content = quote(f"{change.name}\n")
22-
run( # noqa: S603
23-
split(
22+
run(
23+
split( # noqa: S603
2424
f"""towncrier create --content {content} {change.id}.{typ}.md"""
2525
),
2626
check=True,
@@ -95,8 +95,8 @@ def query_gh_issue(
9595
owner: str, repo: str, issue: int, query: str = "title"
9696
) -> dict[str, Any]:
9797
"""Query GitHub for an issue."""
98-
result = run( # noqa: S603
99-
[ # noqa: S607
98+
result = run(
99+
[ # noqa: S607, S603
100100
"gh",
101101
"api",
102102
"graphql",

0 commit comments

Comments
 (0)