Skip to content

Commit

Permalink
fixed sample code in remote docs
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed Sep 15, 2022
1 parent d82cb32 commit 02a1951
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/remote_interpreter.rst
Expand Up @@ -69,7 +69,8 @@ The backend exposes your Python functions by using a Python web framework. In mo
book = xw.Book(json=data)
# Use xlwings as usual
book.sheets[0].value = 'Hello xlwings!'
sheet = book.sheets[0]
sheet["A1"].value = 'Hello xlwings!'
# Pass the following back as the response
return book.json()
Expand Down

0 comments on commit 02a1951

Please sign in to comment.