Skip to content

Commit

Permalink
Fix linter warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
blakeNaccarato committed Jul 3, 2024
1 parent 6c401b2 commit 5681739
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 73 deletions.
38 changes: 0 additions & 38 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

10 changes: 0 additions & 10 deletions .github/ISSUE_TEMPLATE/custom.md

This file was deleted.

20 changes: 0 additions & 20 deletions .github/ISSUE_TEMPLATE/feature_request.md

This file was deleted.

6 changes: 5 additions & 1 deletion docs/softboiler_github_io_docs/docstrings.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@
from myst_parser.parsers.sphinx_ import MystParser
from numpydoc.docscrape import NumpyDocString, Parameter

from softboiler_github_io_docs.types import RegularSection, SeeAlsoSection, SingleSeeAlso
from softboiler_github_io_docs.types import (
RegularSection,
SeeAlsoSection,
SingleSeeAlso,
)

_PARAMETERS_SECTIONS: Final[tuple[str, ...]] = (
"Parameters",
Expand Down
8 changes: 4 additions & 4 deletions scripts/softboiler_github_io_tools/add_changes.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ def add_change(typ: ChangeType = "change"):
owner, repo, issue = get_issue_from_active_branch()
change = get_change(owner, repo, issue)
content = quote(f"{change.name}\n")
run( # noqa: S603
split(
run(
split( # noqa: S603
f"""towncrier create --content {content} {change.id}.{typ}.md"""
),
check=True,
Expand Down Expand Up @@ -95,8 +95,8 @@ def query_gh_issue(
owner: str, repo: str, issue: int, query: str = "title"
) -> dict[str, Any]:
"""Query GitHub for an issue."""
result = run( # noqa: S603
[ # noqa: S607
result = run(
[ # noqa: S607, S603
"gh",
"api",
"graphql",
Expand Down

0 comments on commit 5681739

Please sign in to comment.