From cf22dc159d3e5af421a153da5496ee7c2468d316 Mon Sep 17 00:00:00 2001 From: Matt Fishman Date: Tue, 21 May 2024 12:55:18 -0400 Subject: [PATCH] Format Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- src/abstractitensornetwork.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/abstractitensornetwork.jl b/src/abstractitensornetwork.jl index 28615c68..6f6ee164 100644 --- a/src/abstractitensornetwork.jl +++ b/src/abstractitensornetwork.jl @@ -156,7 +156,7 @@ is_assignment_expr(expr) = false macro preserve_graph(expr) if !is_setindex!_expr(expr) error( - "preserve_graph must be used with setindex! syntax (as @preserve_graph a[i,j,...] = value)" + "preserve_graph must be used with setindex! syntax (as @preserve_graph a[i,j,...] = value)", ) end @capture(expr, array_[indices__] = value_)