Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Parameter to cirq_google #6102

Merged
merged 9 commits into from
May 31, 2023
Prev Previous commit
Next Next commit
Fix python 3.7 import.
  • Loading branch information
dstrain115 committed May 22, 2023
commit fe22867ea5aa6c32ba4a99f97d08cf3de7f3f0c1
3 changes: 2 additions & 1 deletion cirq-google/cirq_google/study/parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from typing import Any, Dict, Optional, Protocol, Sequence
from typing import Any, Dict, Optional, Sequence
from typing_extensions import Protocol
import dataclasses
import cirq

Expand Down