Skip to content

Commit

Permalink
Merge pull request Qiskit#5 from nkanazawa1989/pulse_init
Browse files Browse the repository at this point in the history
[WIP] update init of qiskit.pulse
  • Loading branch information
nkanazawa1989 authored Mar 20, 2019
2 parents de65b11 + 0cf6d17 commit 263936e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
9 changes: 9 additions & 0 deletions qiskit/pulse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,13 @@
# the LICENSE.txt file in the root directory of this source tree.

"""Module for Pulses."""

from .exceptions import ChannelsError, CommandsError, ScheduleError

from qiskit.pulse.commands import (Acquire, FrameChange, PersistentValue,
SamplePulse, Snapshot,
Kernel, Discriminator, function)

from qiskit.pulse.channels import ChannelBank

from qiskit.pulse.schedule import PulseSchedule
4 changes: 3 additions & 1 deletion qiskit/pulse/commands/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
"""Command classes for pulse."""

from .pulse_command import PulseCommand
from .sample_pulse import SamplePulse

from .sample_pulse import SamplePulse
from .acquire import Acquire, Discriminator, Kernel
from .frame_change import FrameChange
from .persistent_value import PersistentValue
from .snapshot import Snapshot

from .pulse_decorators import function

0 comments on commit 263936e

Please sign in to comment.