Skip to content

Commit

Permalink
fix path backslash issues
Browse files Browse the repository at this point in the history
  • Loading branch information
skim2257 committed Dec 13, 2021
1 parent 63b9543 commit d81a74d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion imgtools/modules/datagraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def visualize_graph(self):
"""
Generates visualization using Pyviz, a wrapper around visJS. The visualization can be found at datanet.html
"""
from pyvis.network import Network
from pyvis.network import Network # type: ignore (PyLance)
print("Generating visualizations...")
data_net = Network(height='100%', width='100%', bgcolor='#222222', font_color='white')

Expand Down
2 changes: 1 addition & 1 deletion tests/test_autopipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def dataset_path():
output_path = pathlib.Path(os.path.join(curr_path, 'tests'))
return quebec_path.as_posix(), output_path.as_posix()

# @pytest.mark.parametrize("modalities",["PT","CT,RTDOSE","CT,RTSTRUCT,RTDOSE","CT,RTSTRUCT,RTDOSE,PT"])
# @pytest.mark.parametrize("modalities",["PT", "CT,RTSTRUCT", "CT,RTDOSE", "CT,PT,RTDOSE", "CT,RTSTRUCT,RTDOSE", "CT,RTSTRUCT,RTDOSE,PT"])
@pytest.mark.parametrize("modalities", ["CT,PT,RTDOSE"])
def test_pipeline(dataset_path, modalities):
input_path, output_path = dataset_path
Expand Down

0 comments on commit d81a74d

Please sign in to comment.