Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
rjmacarthy committed Dec 1, 2023
1 parent f3a9375 commit 83ca40d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/completion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 83ca40d

Please sign in to comment.