Skip to content

Commit

Permalink
Update repr(Pulse)
Browse files Browse the repository at this point in the history
  • Loading branch information
blakejohnson committed Jul 1, 2016
1 parent 4ffb910 commit fdfbda9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions QGL/PulseSequencer.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,14 @@ def __init__(self,
self.isTimeAmp = True

def __repr__(self):
return "Pulse({0}, {1}, {2}, {3}, {4}, {5})".format(
return "Pulse({0}, {1}, {2}, {3}, {4}, {5}, {6})".format(
self.label,
self.channel,
self.shapeParams,
self.amp,
self.phase,
self.frameChange)
self.frameChange,
self.ignoredStrParams)

def __str__(self):
kwvals = []
Expand Down

0 comments on commit fdfbda9

Please sign in to comment.