Skip to content

Commit

Permalink
[FIX] remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
hroest committed Apr 20, 2017
1 parent bfd3853 commit 1ea4e11
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pymzml/spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -1504,16 +1504,13 @@ def readAccession(self, parElement):
for precursorElement in element.getiterator():

if precursorElement.tag.endswith('userParam'):
print ("found user param inside precursor!")
itemdict = dict(precursorElement.items())
print(itemdict)
if 'userParams' not in self['precursors'][-1].keys():
self['precursors'][-1]["userParams"] = {}
self['precursors'][-1]["userParams"][ itemdict["name"] ] = itemdict["value"]

elif precursorElement.tag.endswith('isolationWindow'):

print ("get isolation window!")
for subElement in precursorElement.getiterator():
if subElement.tag.endswith('cvParam'):
accession = subElement.get('accession')
Expand Down

0 comments on commit 1ea4e11

Please sign in to comment.