Skip to content

Commit 95b13df

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 9919f5f commit 95b13df

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

scripts/boilerdaq_tools/add_changes.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ def add_change(typ: ChangeType = "change"):
2020
change = get_change(owner, repo, issue)
2121
content = quote(f"{change.name}\n")
2222
run(
23-
split( # noqa: S603
24-
f"""towncrier create --content {content} {change.id}.{typ}.md"""
25-
),
23+
split(f"""towncrier create --content {content} {change.id}.{typ}.md"""),
2624
check=True,
2725
)
2826

@@ -96,7 +94,7 @@ def query_gh_issue(
9694
) -> dict[str, Any]:
9795
"""Query GitHub for an issue."""
9896
result = run(
99-
[ # noqa: S607, S603
97+
[ # noqa: S607
10098
"gh",
10199
"api",
102100
"graphql",

tests/boilerdaq_tests/test_boilerdaq.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from boilerdaq.daq import Looper
66

77

8-
@pytest.mark.slow()
8+
@pytest.mark.slow
99
def test_stages(looper: Looper):
1010
"""Test stages."""
1111
looper.start()

0 commit comments

Comments
 (0)