rename numpy.py to numpy_wrapper.py to avoid lookup conflicts with python2.7

This commit is contained in:
Axel Kohlmeyer
2021-02-09 20:56:33 -05:00
parent 2beef8580a
commit fff1c0c9a7
2 changed files with 1 additions and 1 deletions

View File

@ -416,7 +416,7 @@ class lammps(object):
:rtype: numpy_wrapper :rtype: numpy_wrapper
""" """
if not self._numpy: if not self._numpy:
from .numpy import numpy_wrapper from .numpy_wrapper import numpy_wrapper
self._numpy = numpy_wrapper(self) self._numpy = numpy_wrapper(self)
return self._numpy return self._numpy