@@ -45,7 +45,9 @@ def get_group(
4545 return BugoutGroup (** result )
4646
4747 def find_group (
48- self , token : Union [str , uuid .UUID ], group_id : Union [str , uuid .UUID ],
48+ self ,
49+ token : Union [str , uuid .UUID ],
50+ group_id : Union [str , uuid .UUID ],
4951 ) -> BugoutGroup :
5052 find_group_path = f"groups/find"
5153 query_params = {"group_id" : group_id }
@@ -212,7 +214,9 @@ def create_application(
212214 return BugoutApplication (** result )
213215
214216 def get_application (
215- self , token : Union [str , uuid .UUID ], application_id : Union [str , uuid .UUID ],
217+ self ,
218+ token : Union [str , uuid .UUID ],
219+ application_id : Union [str , uuid .UUID ],
216220 ) -> BugoutApplication :
217221 applications_path = f"applications/{ application_id } "
218222 headers = {
@@ -242,7 +246,9 @@ def list_applications(
242246 return BugoutApplications (** result )
243247
244248 def delete_application (
245- self , token : Union [str , uuid .UUID ], application_id : Union [str , uuid .UUID ],
249+ self ,
250+ token : Union [str , uuid .UUID ],
251+ application_id : Union [str , uuid .UUID ],
246252 ) -> BugoutApplication :
247253 applications_path = f"applications/{ application_id } "
248254 headers = {
0 commit comments