From 2902e433bc06843768d5a83669871562c9e6b46a Mon Sep 17 00:00:00 2001 From: Ryan Hill Date: Wed, 19 Aug 2026 07:52:50 -0500 Subject: [PATCH] Remove statements from args docstring on QasmModule --- src/pyqasm/modules/base.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pyqasm/modules/base.py b/src/pyqasm/modules/base.py index 3e9196f6..9d65b07a 100644 --- a/src/pyqasm/modules/base.py +++ b/src/pyqasm/modules/base.py @@ -183,7 +183,6 @@ class QasmModule(ABC): # pylint: disable=too-many-instance-attributes, too-many Args: name (str): Name of the module. program (Program): The original openqasm3 program. - statements (list[Statement]): list of openqasm3 Statements. """ def __init__(self, name: str, program: Program):