From e2a34b710977ad532006f795d87268558d14bd3d Mon Sep 17 00:00:00 2001
From: Li Li
Date: Wed, 26 Aug 2020 14:53:12 +1000
Subject: [PATCH] Expose API
---
qctrlopencontrols/__init__.py | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/qctrlopencontrols/__init__.py b/qctrlopencontrols/__init__.py
index bfdc5d86..4544a582 100644
--- a/qctrlopencontrols/__init__.py
+++ b/qctrlopencontrols/__init__.py
@@ -19,7 +19,10 @@
__version__ = "4.6.0"
from .driven_controls.driven_control import DrivenControl
-from .driven_controls.predefined import new_predefined_driven_control
+from .driven_controls.predefined import (
+ new_modulated_gaussian_control,
+ new_predefined_driven_control,
+)
from .dynamic_decoupling_sequences.dynamic_decoupling_sequence import (
DynamicDecouplingSequence,
convert_dds_to_driven_control,
@@ -29,6 +32,7 @@
__all__ = [
"convert_dds_to_driven_control",
"new_predefined_dds",
+ "new_modulated_gaussian_control",
"new_predefined_driven_control",
"DrivenControl",
"DynamicDecouplingSequence",