From 83ca40d0d79fad94b77aa42ac8d2baf9295d86f1 Mon Sep 17 00:00:00 2001 From: rjmacarthy Date: Fri, 1 Dec 2023 15:09:06 +0000 Subject: [PATCH] lint --- src/completion.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/completion.ts b/src/completion.ts index c6dd785e..b45990e1 100644 --- a/src/completion.ts +++ b/src/completion.ts @@ -20,7 +20,7 @@ export class CompletionProvider implements InlineCompletionItemProvider { private _config = workspace.getConfiguration('twinny') private _debounceWait = this._config.get('debounceWait') as number private _contextLength = this._config.get('contextLength') as number - private _model = this._config.get('ollamaModelName') + private _model = this._config.get('ollamaModelName') as string constructor(statusBar: StatusBarItem) { this._statusBar = statusBar