diff options
-rw-r--r-- | numpy/__init__.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/__init__.py b/numpy/__init__.py index a242bb7df..7dadb6491 100644 --- a/numpy/__init__.py +++ b/numpy/__init__.py @@ -109,8 +109,9 @@ Exceptions to this rule are documented. import sys import warnings -from ._globals import ModuleDeprecationWarning, VisibleDeprecationWarning -from ._globals import _NoValue +from ._globals import ( + ModuleDeprecationWarning, VisibleDeprecationWarning, _NoValue +) # We first need to detect if we're being called as part of the numpy setup # procedure itself in a reliable manner. @@ -397,4 +398,3 @@ else: from ._version import get_versions __version__ = get_versions()['version'] del get_versions - |