Skip to content

Commit

Permalink
remove extra lines
Browse files Browse the repository at this point in the history
  • Loading branch information
fenilsuchak committed Mar 30, 2019
1 parent b426514 commit 9e4b121
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions package/MDAnalysis/topology/c_GROParser.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,9 @@ class GROParser(TopologyReaderBase):
n_atoms = int(next(inf))
# Allocate shizznizz
resids = np.zeros(n_atoms, dtype=np.int32)
#resids = np.zeros(n_atoms, dtype=np.int32)
resnames = np.zeros(n_atoms, dtype=object)
#resnames = np.zeros(n_atoms, dtype=object)
names = np.zeros(n_atoms, dtype = object)
#names = np.zeros(n_atoms, dtype=object)
indices = np.zeros(n_atoms, dtype=np.int32)
#indices = np.zeros(n_atoms, dtype=np.int32)
for i, line in enumerate(inf):
if i == n_atoms:
break
Expand Down

0 comments on commit 9e4b121

Please sign in to comment.