summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBas van Beek <b.f.van.beek@vu.nl>2020-10-17 18:04:31 +0200
committerBas van Beek <b.f.van.beek@vu.nl>2020-10-17 18:05:13 +0200
commit226b46bb422953b08e38756d3b9384988d3d35fc (patch)
tree3d4aa6c5b7351a3609c16b4ee150c75e16c2a991
parent3082bd7e6b23d6076cc6da8b526862019610202c (diff)
downloadnumpy-226b46bb422953b08e38756d3b9384988d3d35fc.tar.gz
MAINT: Removed an unused import
-rw-r--r--numpy/typing/_callable.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/typing/_callable.py b/numpy/typing/_callable.py
index e8c8615b5..b16891b0e 100644
--- a/numpy/typing/_callable.py
+++ b/numpy/typing/_callable.py
@@ -35,7 +35,7 @@ from ._scalars import (
_ComplexLike,
_NumberLike,
)
-from . import NBitBase, _64Bit
+from . import NBitBase
if sys.version_info >= (3, 8):
from typing import Protocol