Skip to content

Commit 25c9fe9

Browse files
stephencelisgithub-actions[bot]
authored andcommitted
Run swift-format
1 parent 940f266 commit 25c9fe9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Sources/DependenciesMacrosPlugin/DependencyClientMacro.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ public enum DependencyClientMacro: MemberAttributeMacro, MemberMacro {
8686
var accesses: Set<Access> = Access(modifiers: declaration.modifiers).map { [$0] } ?? []
8787
for member in declaration.memberBlock.members {
8888
guard var property = member.decl.as(VariableDeclSyntax.self) else { continue }
89-
let isEndpoint = property.hasDependencyEndpointMacroAttached
89+
let isEndpoint =
90+
property.hasDependencyEndpointMacroAttached
9091
|| property.bindingSpecifier.tokenKind != .keyword(.let) && property.isClosure
9192
let propertyAccess = Access(modifiers: property.modifiers)
9293
guard

0 commit comments

Comments
 (0)