@@ -90,7 +90,7 @@ def get_build_steps( # pylint: disable=too-many-locals, too-many-arguments
9090
9191 if project .fuzzing_language not in LANGUAGES_WITH_COVERAGE_SUPPORT :
9292 return [], (f'Project "{ project .name } " is written in '
93- f'"{ project .fuzzing_language } ", coverage is not supported yet.' )
93+ f'"{ project .fuzzing_language } ", coverage is not supported yet.' )
9494
9595 report_date = build_project .get_datetime_now ().strftime ('%Y%m%d' )
9696 bucket = CoverageBucket (project .name , report_date , PLATFORM , config .testing )
@@ -258,7 +258,7 @@ def get_build_steps( # pylint: disable=too-many-locals, too-many-arguments
258258
259259 build_steps .append (
260260 build_lib .http_upload_step (latest_report_info_body ,
261- latest_report_info_url ,
261+ latest_report_info_url ,
262262 LATEST_REPORT_INFO_CONTENT_TYPE ))
263263 return build_steps , None
264264
@@ -273,8 +273,8 @@ def get_fuzz_introspector_steps( # pylint: disable=too-many-locals, too-many-ar
273273
274274 if project .fuzzing_language not in LANGUAGES_WITH_INTROSPECTOR_SUPPORT :
275275 return [], (f'Project "{ project .name } " is written in '
276- f'"{ project .fuzzing_language } ", Fuzz Introspector is not '
277- 'supported yet.' )
276+ f'"{ project .fuzzing_language } ", Fuzz Introspector is not '
277+ 'supported yet.' )
278278
279279 build_steps = []
280280 build = build_project .Build (FUZZING_ENGINE , 'introspector' , ARCHITECTURE )
0 commit comments