Skip to content

Commit

Permalink
Merge branch 'master' into issues/435_mapping_pt_to_same_channel
Browse files Browse the repository at this point in the history
  • Loading branch information
terrorfisch committed Mar 12, 2019
2 parents 8164bcf + 6dd7c10 commit 3534640
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qupulse/pulses/plotting.py
Expand Up @@ -139,7 +139,7 @@ def render(program: Union[AbstractInstructionBlock, Loop],
raise ValueError("Keyword argument time_slice is not supported when rendering instruction blocks")
return _render_instruction_block(program, sample_rate=sample_rate, render_measurements=render_measurements)
else:
raise ValueError('Cannot render an object of type %s', type(program))
raise ValueError('Cannot render an object of type %r' % type(program), program)


def _render_instruction_block(sequence: AbstractInstructionBlock,
Expand Down

0 comments on commit 3534640

Please sign in to comment.