We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e405392 commit 1b2d1b0Copy full SHA for 1b2d1b0
.vscode/settings.json
@@ -1,5 +1,4 @@
1
{
2
- "python.pythonPath": "~/miniconda3/bin/python",
3
"python.formatting.provider": "yapf",
4
"python.linting.pylintPath": "~/miniconda3/bin/pylint"
5
}
tests/test_dicom.py
@@ -7,7 +7,5 @@ def test_dicom_convesion(tmpdir):
7
print("Using temp dir", tmpdir)
8
path = pydicom.data.get_testdata_file("CT_small.dcm")
9
print("Using dicom file", path)
10
- paths = sa.dicom_to_rgb_sequence(
11
- path, tmpdir
12
- )
+ paths = sa.dicom_to_rgb_sequence(path, tmpdir)
13
assert len(paths) == 1
0 commit comments