Skip to content

Commit

Permalink
fix typing of default_empty_value
Browse files Browse the repository at this point in the history
  • Loading branch information
nbwzx committed Apr 25, 2024
1 parent e3cc0e4 commit fdea431
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gspread/worksheet.py
Original file line number Diff line number Diff line change
Expand Up @@ -2607,7 +2607,7 @@ def unmerge_cells(self, name):

return self.spreadsheet.batch_update(body)

def get_notes(self, default_empty_value: str = None) -> List[List[str]]:
def get_notes(self, default_empty_value: Optional[str] = None) -> List[List[str]]:
"""Returns a list of lists containing all notes in the sheet, or the empty list if the
sheet does not have a note.
Expand Down

0 comments on commit fdea431

Please sign in to comment.