@@ -281,7 +281,9 @@ def get_target_record(self, target_id: str) -> TargetStatusAndRecord:
281281 )
282282
283283 result_data = json .loads (s = response .text )
284- return TargetStatusAndRecord .from_response_dict (result_data ) # type: ignore[misc]
284+ return TargetStatusAndRecord .from_response_dict (
285+ response_dict = result_data ,
286+ )
285287
286288 def wait_for_target_processed (
287289 self ,
@@ -405,7 +407,9 @@ def get_target_summary_report(self, target_id: str) -> TargetSummaryReport:
405407 )
406408
407409 result_data = dict (json .loads (s = response .text ))
408- return TargetSummaryReport .from_response_dict (result_data ) # type: ignore[misc]
410+ return TargetSummaryReport .from_response_dict (
411+ response_dict = result_data ,
412+ )
409413
410414 def get_database_summary_report (self ) -> DatabaseSummaryReport :
411415 """Get a summary report for the database.
@@ -438,7 +442,9 @@ def get_database_summary_report(self) -> DatabaseSummaryReport:
438442 )
439443
440444 response_data = dict (json .loads (s = response .text ))
441- return DatabaseSummaryReport .from_response_dict (response_data ) # type: ignore[misc]
445+ return DatabaseSummaryReport .from_response_dict (
446+ response_dict = response_data ,
447+ )
442448
443449 def delete_target (self , target_id : str ) -> None :
444450 """Delete a given target.
0 commit comments