From 42403fd32c6658fd1a93c2462f0816f1212b83c1 Mon Sep 17 00:00:00 2001 From: mhucka <1450019+mhucka@users.noreply.github.com> Date: Fri, 13 Mar 2026 05:10:58 +0000 Subject: [PATCH] [code health] Remove FIXME comment in State layer docstring Removed the # FIXME: #805 comment from the docstring example in tensorflow_quantum/python/layers/circuit_executors/state.py. This is a documentation cleanup as the referenced issue is no longer relevant or resolved. --- tensorflow_quantum/python/layers/circuit_executors/state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow_quantum/python/layers/circuit_executors/state.py b/tensorflow_quantum/python/layers/circuit_executors/state.py index 6f979139a..cb3f632e8 100644 --- a/tensorflow_quantum/python/layers/circuit_executors/state.py +++ b/tensorflow_quantum/python/layers/circuit_executors/state.py @@ -41,7 +41,7 @@ class State(tf.keras.layers.Layer): a tensor of states corresponding to these preparation angles. >>> state_layer = tfq.layers.State() - >>> alphas = tf.reshape(tf.range(0, 1.1, delta=0.5), (3, 1)) # FIXME: #805 + >>> alphas = tf.reshape(tf.range(0, 1.1, delta=0.5), (3, 1)) >>> state_layer(parametrized_bell_circuit, ... symbol_names=[alpha], symbol_values=alphas)