diff options
author | mattip <matti.picus@gmail.com> | 2019-03-16 21:46:59 +0200 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-03-17 09:05:25 +0200 |
commit | 32129453da0f9bf0f352adaaff79f884d2bf52bc (patch) | |
tree | b7ce2d438f054385ebc5648a0e136b24cdbdfbfe /numpy/distutils/_shell_utils.py | |
parent | bee436da4efb2240752eea751971aa6ea5a3bb48 (diff) | |
download | numpy-32129453da0f9bf0f352adaaff79f884d2bf52bc.tar.gz |
DEV: cleanup imports and some assignments (from LGTM)
Diffstat (limited to 'numpy/distutils/_shell_utils.py')
-rw-r--r-- | numpy/distutils/_shell_utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/_shell_utils.py b/numpy/distutils/_shell_utils.py index 5ef874900..82abd5f4e 100644 --- a/numpy/distutils/_shell_utils.py +++ b/numpy/distutils/_shell_utils.py @@ -24,12 +24,12 @@ class CommandLineParser: @staticmethod def join(argv): """ Join a list of arguments into a command line string """ - raise NotImplemented + raise NotImplementedError @staticmethod def split(cmd): """ Split a command line string into a list of arguments """ - raise NotImplemented + raise NotImplementedError class WindowsParser: |