Skip to content

Commit

Permalink
Fixed SwiftLint error
Browse files Browse the repository at this point in the history
  • Loading branch information
austincondiff committed Aug 8, 2024
1 parent 2d99e01 commit 7eef7bf
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,13 @@ extension SourceControlManager {
) async throws {
guard currentBranch != nil else { return }

try await gitClient.pushToRemote(remote: remote, branch: branch, setUpstream: setUpstream, force: force, tags: tags)
try await gitClient.pushToRemote(
remote: remote,
branch: branch,
setUpstream: setUpstream,
force: force,
tags: tags
)

await refreshCurrentBranch()
await self.refreshNumberOfUnsyncedCommits()
Expand Down

0 comments on commit 7eef7bf

Please sign in to comment.