Skip to content

Commit 3bccc14

Browse files
renovate[bot]Copilotwatermarkhu
authored
ci(deps): update group-github-actions (major) (#141)
* ci(deps): update group-github-actions * Fix ty type checker errors in rendering.py (#142) * Initial plan * Fix ty type checking errors by updating ignore comments Co-authored-by: watermarkhu <18556882+watermarkhu@users.noreply.github.com> --------- Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> Co-authored-by: watermarkhu <18556882+watermarkhu@users.noreply.github.com> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com> Co-authored-by: watermarkhu <18556882+watermarkhu@users.noreply.github.com>
1 parent 753845b commit 3bccc14

2 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/qualify.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
130130
- name: Upload Test Results
131131
if: (!cancelled())
132-
uses: actions/upload-artifact@v5
132+
uses: actions/upload-artifact@v6
133133
with:
134134
name: python${{ matrix.python-version }}
135135
path: "*.xml"
@@ -150,7 +150,7 @@ jobs:
150150
fetch-depth: 2
151151

152152
- name: Download Artifacts
153-
uses: actions/download-artifact@v6
153+
uses: actions/download-artifact@v7
154154
with:
155155
path: results
156156

src/mkdocstrings_handlers/matlab/rendering.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -153,12 +153,12 @@ def do_format_signature(
153153

154154
signature = template.render(new_context, function=function, signature=True)
155155
signature = str(
156-
env.filters["highlight"]( # type: ignore
157-
Markup.escape(signature),
158-
language="matlab", # type: ignore
159-
inline=False, # type: ignore
160-
classes=["doc-signature"], # type: ignore
161-
linenums=False, # type: ignore
156+
env.filters["highlight"]( # ty: ignore
157+
Markup.escape(signature), # ty: ignore
158+
language="matlab", # ty: ignore
159+
inline=False, # ty: ignore
160+
classes=["doc-signature"], # ty: ignore
161+
linenums=False, # ty: ignore
162162
),
163163
)
164164

@@ -244,12 +244,12 @@ def do_format_property(
244244
signature += f" = {value}"
245245

246246
signature = str(
247-
env.filters["highlight"]( # type: ignore
248-
Markup.escape(signature),
249-
language="matlab", # type: ignore
250-
inline=False, # type: ignore
251-
classes=["doc-signature"], # type: ignore
252-
linenums=False, # type: ignore
247+
env.filters["highlight"]( # ty: ignore
248+
Markup.escape(signature), # ty: ignore
249+
language="matlab", # ty: ignore
250+
inline=False, # ty: ignore
251+
classes=["doc-signature"], # ty: ignore
252+
linenums=False, # ty: ignore
253253
),
254254
)
255255

0 commit comments

Comments
 (0)