You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
As a python user you would expect that if you get Sheet object, then it will be the same object without further actions.
In the snippet below, you will see that we need to extra evaluate the Sheet again which is counterintuitive
To Reproduce
response=smart.Sheets.list_sheets() # Call the list_sheets() function and store the response objectforsheetinresponse.data:
ifsheet.name=="plan":
breakelse:
raiseValueError("No sheet with name 'plan' was found")
sheet=smart.Sheets.get_sheet(sheet.id) # Need to load the sheet again, although, it is the same Sheet object
Expected behavior
I would expect the last evaluation to be not required or at least provide a method like Sheet.refresh() that will pull the data.
Environment (please complete the following information):
Smartsheet Python SDK Version [3.0.2]
Python Version [3.10]
The text was updated successfully, but these errors were encountered:
Describe the bug
As a python user you would expect that if you get Sheet object, then it will be the same object without further actions.
In the snippet below, you will see that we need to extra evaluate the Sheet again which is counterintuitive
To Reproduce
Expected behavior
I would expect the last evaluation to be not required or at least provide a method like
Sheet.refresh()
that will pull the data.Environment (please complete the following information):
The text was updated successfully, but these errors were encountered: