From ea7eff8e5004d6818a02a4bb82b076d03d92dcdd Mon Sep 17 00:00:00 2001 From: Roger-luo Date: Thu, 30 May 2024 13:39:20 -0400 Subject: [PATCH] run black --- src/bloqade/builder/parse/builder.py | 1 + src/bloqade/builder/parse/stream.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/bloqade/builder/parse/builder.py b/src/bloqade/builder/parse/builder.py index a8da1bb13..02c15aaf2 100644 --- a/src/bloqade/builder/parse/builder.py +++ b/src/bloqade/builder/parse/builder.py @@ -24,6 +24,7 @@ from bloqade.ir.routine.base import Routine from bloqade.ir.analog_circuit import AnalogCircuit + class Parser: """A class for parsing quantum computing program components into intermediate representation (IR).""" diff --git a/src/bloqade/builder/parse/stream.py b/src/bloqade/builder/parse/stream.py index 692f8c836..b699ce009 100644 --- a/src/bloqade/builder/parse/stream.py +++ b/src/bloqade/builder/parse/stream.py @@ -10,6 +10,7 @@ from typing import Optional, List, Type from bloqade.builder.base import Builder + @dataclass class BuilderNode: """A node in the builder stream.""" @@ -21,6 +22,7 @@ def __repr__(self) -> str: """Representation of the BuilderNode.""" return repr(self.node) + @dataclass class BuilderStream: """Represents a stream of builder nodes."""