Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
kele-leanes committed Dec 5, 2023
1 parent 18df927 commit 62467d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sources/XMTP/Client.swift
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ public struct ClientOptions {

/// Optional: Specify self-reported version e.g. XMTPInbox/v1.0.0.
public var isSecure: Bool = true
/// Specify whether the API client should use TLS security. In general this should only be false when using the `.local` environment.
public var appVersion: String? = nil

public init(env: XMTPEnvironment = .dev, isSecure: Bool = true, appVersion: String? = nil) {
public init(env: XMTPEnvironment = .dev, isSecure: Bool = true, appVersion: String? = nil) {
self.env = env
self.isSecure = isSecure
self.appVersion = appVersion
self.appVersion = appVersion
}
}

Expand Down

0 comments on commit 62467d2

Please sign in to comment.