Skip to content

Commit

Permalink
fix build_validator_call in cubids/validator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tientong98 committed Oct 9, 2024
1 parent 701e667 commit c1b6995
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions cubids/tests/test_bond.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,10 +988,6 @@ def test_validator(tmp_path):
call = build_validator_call(str(data_root) + "/complete")
ret = run_validator(call)

# DEBUG:
print(ret.stdin.decode('UTF-8'))
print(ret.stdout.decode('UTF-8'))

assert ret.returncode == 0
parsed = parse_validator_output(ret.stdout.decode("UTF-8"))

Expand Down
2 changes: 0 additions & 2 deletions cubids/validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@ def build_validator_call(path, ignore_headers=False):
if ignore_headers:
command.append("--ignoreNiftiHeaders")

command.append(path)

return command


Expand Down

0 comments on commit c1b6995

Please sign in to comment.