Make Formatter Happy

Signed-off-by: Will Hawkins <hawkinsw@obs.cr>
This commit is contained in:
Will Hawkins
2026-03-07 02:45:22 -05:00
parent 0b84951f8b
commit 7c7416fa64
+2 -1
View File
@@ -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? {