Closed
Description
For example:
pd.read_excel('file_name.xlsx',sheet='mysheet')
does not raise any error. The right parameter name is "sheetname" . If "sheet" is passed it defaults to the first sheet and no error is raised.
sheetname and sheet are very similar and easy to confuse.
One might think that it is reading the sheet passed as argument when in fact it is another one.
I would like to suggest for errors to be raised if unexpected args are passed.