Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
khvn26 committed Oct 7, 2024
1 parent 95fa8b5 commit 348de65
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion FlagsmithClient/Classes/Flagsmith.swift
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ public final class Flagsmith: @unchecked Sendable {
{
if let identity = identity {
if let traits = traits {
apiManager.request(.postTraits(identity: identity, traits: traits, transient: transient)) { (result: Result<Traits, Error>) in
apiManager.request(
.postTraits(identity: identity, traits: traits, transient: transient)
) { (result: Result<Traits, Error>) in
switch result {
case let .success(result):
completion(.success(result.flags))
Expand Down

0 comments on commit 348de65

Please sign in to comment.