(sheetID, index int64)
| 205 | } |
| 206 | |
| 207 | func deleteRequest(sheetID, index int64) *sheets.Request { |
| 208 | return &sheets.Request{ |
| 209 | DeleteConditionalFormatRule: &sheets.DeleteConditionalFormatRuleRequest{ |
| 210 | SheetId: sheetID, |
| 211 | Index: index, |
| 212 | }, |
| 213 | } |
| 214 | } |
| 215 | |
| 216 | func invalidf(format string, args ...any) error { |
| 217 | return ValidationError(fmt.Sprintf(format, args...)) |
no outgoing calls
no test coverage detected