Skip to content

Commit e9aad40

Browse files
committed
-
1 parent e255fd2 commit e9aad40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

prody/trajectory/trajbase.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""This module defines base class for trajectory handling."""
33

44
from numbers import Integral
5-
from numpy import ndarray, unique
5+
from numpy import ndarray, unique, array
66

77
from prody.ensemble import Ensemble
88
from prody.utilities import checkCoords, checkWeights
@@ -370,7 +370,7 @@ def hasUnitcell(self):
370370
pass
371371

372372

373-
def wrap(self, unitcell=None, center=np.array([0., 0., 0.])):
373+
def wrap(self, unitcell=None, center=array([0., 0., 0.])):
374374
"""Wrap atoms into an image of the system simulated under periodic boundary
375375
conditions for all frames and returns a new Trajectory.
376376

0 commit comments

Comments
 (0)