From 5600d5ac421401275833ff6b03f8cc0d457e4a71 Mon Sep 17 00:00:00 2001 From: Craig Disselkoen Date: Fri, 6 Dec 2024 10:46:35 -0500 Subject: [PATCH] cargo fmt Signed-off-by: Craig Disselkoen --- cedar-policy-core/src/parser/cst_to_ast.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cedar-policy-core/src/parser/cst_to_ast.rs b/cedar-policy-core/src/parser/cst_to_ast.rs index af6f80d7d..6fa20407f 100644 --- a/cedar-policy-core/src/parser/cst_to_ast.rs +++ b/cedar-policy-core/src/parser/cst_to_ast.rs @@ -492,7 +492,7 @@ impl ast::UnreservedId { "isEmpty" => { require_zero_arguments(args.into_iter(), "isEmpty", loc)?; Ok(construct_method_is_empty(e, loc.clone())) - }, + } "getTag" => extract_single_argument(args.into_iter(), "getTag", loc) .map(|arg| construct_method_get_tag(e, arg, loc.clone())), "hasTag" => extract_single_argument(args.into_iter(), "hasTag", loc)