Try with win32com lib.
excel = win32com.client.Dispatch("Excel.Application")
excel.Visible = False
excel.DisplayAlerts = False
wb = excel.Workbooks.Open(file_path)
ws = wb.Sheets("Sheet1")
used_range = ws.UsedRange
used_range.Value = used_range.Value
wb.SaveAs(file_path)