Skip to content

Commit 15a8a29

Browse files
committed
Remove and fix typings
1 parent d3683ec commit 15a8a29

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

exasol/toolbox/nox/_artifacts.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,9 +195,7 @@ def _prepare_coverage_xml(session: Session, source: Path) -> None:
195195
f"{source}/*",
196196
"--fail-under=0",
197197
]
198-
output = subprocess.run(
199-
command, capture_output=True, text=True, check=False
200-
) # type: ignore
198+
output = subprocess.run(command, capture_output=True, text=True, check=False)
201199

202200
if output.returncode != 0:
203201
if output.stderr.strip() == "No data to report.":

0 commit comments

Comments
 (0)