Skip to content

Commit

Permalink
Update workspace/resource_notebook.go
Browse files Browse the repository at this point in the history
Co-authored-by: Omer Lachish <[email protected]>
  • Loading branch information
alexott and rauchy authored Dec 4, 2024
1 parent 7a54068 commit 7f1b4e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions workspace/resource_notebook.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ func (a NotebooksAPI) Create(r ImportPath) (ImportResponse, error) {
mtx.Lock()
defer mtx.Unlock()
}
var responce ImportResponse
err := a.client.Post(a.context, "/workspace/import", r, &responce)
return responce, err
var response ImportResponse
err := a.client.Post(a.context, "/workspace/import", r, &response)
return response, err
}

// Read returns the notebook metadata and not the contents
Expand Down

0 comments on commit 7f1b4e7

Please sign in to comment.