@@ -119,7 +119,7 @@ def __init__(
119119 path_pattern = "/targets" ,
120120 http_methods = {HTTPMethod .POST },
121121 )
122- def add_target (self , * , request : Request , context : Context ) -> str :
122+ def add_target (self , request : Request , context : Context ) -> str :
123123 """
124124 Add a target.
125125
@@ -196,7 +196,7 @@ def add_target(self, *, request: Request, context: Context) -> str:
196196 path_pattern = f"/targets/{ _TARGET_ID_PATTERN } " ,
197197 http_methods = {HTTPMethod .DELETE },
198198 )
199- def delete_target (self , * , request : Request , context : Context ) -> str :
199+ def delete_target (self , request : Request , context : Context ) -> str :
200200 """
201201 Delete a target.
202202
@@ -263,7 +263,7 @@ def delete_target(self, *, request: Request, context: Context) -> str:
263263 return body_json
264264
265265 @route (path_pattern = "/summary" , http_methods = {HTTPMethod .GET })
266- def database_summary (self , * , request : Request , context : Context ) -> str :
266+ def database_summary (self , request : Request , context : Context ) -> str :
267267 """
268268 Get a database summary report.
269269
@@ -329,7 +329,7 @@ def database_summary(self, *, request: Request, context: Context) -> str:
329329 return body_json
330330
331331 @route (path_pattern = "/targets" , http_methods = {HTTPMethod .GET })
332- def target_list (self , * , request : Request , context : Context ) -> str :
332+ def target_list (self , request : Request , context : Context ) -> str :
333333 """
334334 Get a list of all targets.
335335
@@ -389,7 +389,7 @@ def target_list(self, *, request: Request, context: Context) -> str:
389389 path_pattern = f"/targets/{ _TARGET_ID_PATTERN } " ,
390390 http_methods = {HTTPMethod .GET },
391391 )
392- def get_target (self , * , request : Request , context : Context ) -> str :
392+ def get_target (self , request : Request , context : Context ) -> str :
393393 """
394394 Get details of a target.
395395
@@ -457,7 +457,7 @@ def get_target(self, *, request: Request, context: Context) -> str:
457457 path_pattern = f"/duplicates/{ _TARGET_ID_PATTERN } " ,
458458 http_methods = {HTTPMethod .GET },
459459 )
460- def get_duplicates (self , * , request : Request , context : Context ) -> str :
460+ def get_duplicates (self , request : Request , context : Context ) -> str :
461461 """
462462 Get targets which may be considered duplicates of a given target.
463463
@@ -531,7 +531,7 @@ def get_duplicates(self, *, request: Request, context: Context) -> str:
531531 path_pattern = f"/targets/{ _TARGET_ID_PATTERN } " ,
532532 http_methods = {HTTPMethod .PUT },
533533 )
534- def update_target (self , * , request : Request , context : Context ) -> str :
534+ def update_target (self , request : Request , context : Context ) -> str :
535535 """
536536 Update a target.
537537
@@ -640,7 +640,7 @@ def update_target(self, *, request: Request, context: Context) -> str:
640640 path_pattern = f"/summary/{ _TARGET_ID_PATTERN } " ,
641641 http_methods = {HTTPMethod .GET },
642642 )
643- def target_summary (self , * , request : Request , context : Context ) -> str :
643+ def target_summary (self , request : Request , context : Context ) -> str :
644644 """
645645 Get a summary report for a target.
646646
0 commit comments