From 7c7416fa64ced405f7cc468e73a031b4c6b14836 Mon Sep 17 00:00:00 2001 From: Will Hawkins Date: Sat, 7 Mar 2026 02:45:22 -0500 Subject: [PATCH] Make Formatter Happy Signed-off-by: Will Hawkins --- Sources/Common/ProgramTypes.swift | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Sources/Common/ProgramTypes.swift b/Sources/Common/ProgramTypes.swift index ccd1cd9..61f8934 100644 --- a/Sources/Common/ProgramTypes.swift +++ b/Sources/Common/ProgramTypes.swift @@ -64,7 +64,8 @@ public class Variable: TypedIdentifier { } public override var description: String { - return "\(super.description) = \(value?.description ?? "Missing Value") \(constant ? "(constant)" : "")" + return + "\(super.description) = \(value?.description ?? "Missing Value") \(constant ? "(constant)" : "")" } public var value_type: P4Value? {