summaryrefslogtreecommitdiff
path: root/numpy/lib/npyio.py
diff options
context:
space:
mode:
authorEric Wieser <wieser.eric@gmail.com>2020-08-31 10:23:54 +0100
committerEric Wieser <wieser.eric@gmail.com>2020-08-31 10:23:54 +0100
commit8a4fafa5278c2d894cf4efd40a342b33e941e373 (patch)
tree80638b083aeebdfd5a4dddd2793e71ef996fdf52 /numpy/lib/npyio.py
parentb2f8b7c5e0f66f48398d830cebd499a60a2e7120 (diff)
downloadnumpy-8a4fafa5278c2d894cf4efd40a342b33e941e373.tar.gz
MAINT: Remove users of `numpy.compat.bytes`
Some more Python 2 cleanup.
Diffstat (limited to 'numpy/lib/npyio.py')
-rw-r--r--numpy/lib/npyio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/npyio.py b/numpy/lib/npyio.py
index cc3465cc6..d1a29ffad 100644
--- a/numpy/lib/npyio.py
+++ b/numpy/lib/npyio.py
@@ -23,7 +23,7 @@ from ._iotools import (
)
from numpy.compat import (
- asbytes, asstr, asunicode, bytes, os_fspath, os_PathLike,
+ asbytes, asstr, asunicode, os_fspath, os_PathLike,
pickle, contextlib_nullcontext
)