Skip to content

Commit 5d2f830

Browse files
committed
Fix CI
1 parent d9fcbc4 commit 5d2f830

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
python-version: '3.10'
1414
- uses: psf/black@stable
1515
with:
16-
args: ". --check"
16+
options: ". --check"
1717
version: "25.9.0"
1818
- uses: jpetrucciani/mypy-check@master
1919
with:

exdown.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ def from_buffer(
109109

110110
if focus and focus != syntax.strip():
111111
continue
112-
skip: Optional[list[int]] = parse_skip(previous_line) if previous_line else None
112+
skip: Optional[list[int]] = (
113+
parse_skip(previous_line) if previous_line else None
114+
)
113115
if skip is None:
114116
pass # Do not skip
115117
elif skip == []:

0 commit comments

Comments
 (0)