8000 RF: use native versions of callable, io classes · nipy/nibabel@adf90a0 · GitHub
[go: up one dir, main page]

Skip to content

Commit adf90a0

Browse files
committed
RF: use native versions of callable, io classes
Use native versions rather using using versions from 'six'.
1 parent 78c9b61 commit adf90a0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nibabel/benchmarks/bench_load_save.py 8000

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
import numpy as np
2121

22-
from six import BytesIO
22+
from io import BytesIO
2323

2424
from .. import Nifti1Image
2525

nibabel/gifti/parse_gifti_fast.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
import sys
1313
import warnings
1414
import zlib
15-
from six import StringIO
15+
from io import StringIO
1616
from xml.parsers.expat import ExpatError
1717

1818
import numpy as np

0 commit comments

Comments
 (0)
0