Skip to content

Commit 60da0b9

Browse files
ci(pre-commit): Apply automatic fixes
1 parent ff16fbb commit 60da0b9

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

src/ESPAsyncWebServer.h

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -670,15 +670,17 @@ class AsyncWebServerRequest {
670670

671671
AsyncWebServerResponse *
672672
beginResponse(FS &fs, const String &path, const char *contentType = asyncsrv::empty, bool download = false, AwsTemplateProcessor callback = nullptr);
673-
AsyncWebServerResponse *
674-
beginResponse(FS &fs, const String &path, const String &contentType = asyncsrv::emptyString, bool download = false, AwsTemplateProcessor callback = nullptr) {
673+
AsyncWebServerResponse *beginResponse(
674+
FS &fs, const String &path, const String &contentType = asyncsrv::emptyString, bool download = false, AwsTemplateProcessor callback = nullptr
675+
) {
675676
return beginResponse(fs, path, contentType.c_str(), download, callback);
676677
}
677678

678679
AsyncWebServerResponse *
679680
beginResponse(File content, const String &path, const char *contentType = asyncsrv::empty, bool download = false, AwsTemplateProcessor callback = nullptr);
680-
AsyncWebServerResponse *
681-
beginResponse(File content, const String &path, const String &contentType = asyncsrv::emptyString, bool download = false, AwsTemplateProcessor callback = nullptr) {
681+
AsyncWebServerResponse *beginResponse(
682+
File content, const String &path, const String &contentType = asyncsrv::emptyString, bool download = false, AwsTemplateProcessor callback = nullptr
683+
) {
682684
return beginResponse(content, path, contentType.c_str(), download, callback);
683685
}
684686

0 commit comments

Comments
 (0)