Skip to content

Commit

Permalink
Fix type error
Browse files Browse the repository at this point in the history
  • Loading branch information
jdorn-gt committed Jul 22, 2024
1 parent 5a5ab6a commit 6c11d2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .ci/adjust-coverage-paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@

if args.source_dir is None:
parser.error("either --source-dir or CI_PROJECT_DIR is required")
args.source_dir = args.source_dir.resolve()
args.source_dir = Path(args.source_dir).resolve()

if args.build_dir is None:
args.build_dir = args.coverage.parent
Expand Down

0 comments on commit 6c11d2e

Please sign in to comment.