Skip to content

Commit 3c4e7c5

Browse files
committed
add fmt check
1 parent 8ba25dd commit 3c4e7c5

File tree

1 file changed

+8
-1
lines changed
  • crates/emmylua_code_analysis/src/db_index/flow

1 file changed

+8
-1
lines changed

crates/emmylua_code_analysis/src/db_index/flow/mod.rs

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,14 @@ impl LuaFlowIndex {
5757
self.signature_cast_cache
5858
.entry(file_id)
5959
.or_default()
60-
.insert(signature_id, LuaSignatureCast { name, cast, fallback_cast });
60+
.insert(
61+
signature_id,
62+
LuaSignatureCast {
63+
name,
64+
cast,
65+
fallback_cast,
66+
},
67+
);
6168
}
6269
}
6370

0 commit comments

Comments
 (0)