From a6586c01e4720ee1233f3fc83ed7a2989e5a8dbb Mon Sep 17 00:00:00 2001 From: Evan Date: Sat, 26 Oct 2024 22:59:09 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Reformatted=20Nova.swift?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Evan --- Sources/Nova/Nova.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/Nova/Nova.swift b/Sources/Nova/Nova.swift index f9c1a4b..097ee67 100644 --- a/Sources/Nova/Nova.swift +++ b/Sources/Nova/Nova.swift @@ -3,8 +3,8 @@ import Foundation public class Nova: @unchecked Sendable { private init() { - fatalError("This class should not be instantiated") - } + fatalError("This class should not be instantiated") + } internal struct APIKeys: Codable { let openAI: String? @@ -23,7 +23,7 @@ public class Nova: @unchecked Sendable { return keys } } - + public static func setup(teamID: String) { guard !_isInitialized else { fatalError("Attempted to configure the Nova SDK multiple times. Please only call setup once.")