@@ -37,13 +37,19 @@ def _get_filter_choices():
3737)
3838
3939
40- @click .group (cls = OrderedGroup , help = f"{ DEPRECATION_TEXT } \n \n Add and remove employees from the Departing Employees detection list." )
40+ @click .group (
41+ cls = OrderedGroup ,
42+ help = f"{ DEPRECATION_TEXT } \n \n Add and remove employees from the Departing Employees detection list." ,
43+ )
4144@sdk_options (hidden = True )
4245def departing_employee (state ):
4346 pass
4447
4548
46- @departing_employee .command ("list" , help = f"{ DEPRECATION_TEXT } \n \n Lists the users on the Departing Employees list." )
49+ @departing_employee .command (
50+ "list" ,
51+ help = f"{ DEPRECATION_TEXT } \n \n Lists the users on the Departing Employees list." ,
52+ )
4753@sdk_options ()
4854@format_option
4955@filter_option
@@ -57,7 +63,9 @@ def _list(state, format, filter):
5763 )
5864
5965
60- @departing_employee .command (help = f"{ DEPRECATION_TEXT } \n \n Add a user to the Departing Employees detection list." )
66+ @departing_employee .command (
67+ help = f"{ DEPRECATION_TEXT } \n \n Add a user to the Departing Employees detection list."
68+ )
6169@username_arg
6270@click .option (
6371 "--departure-date" ,
@@ -73,15 +81,20 @@ def add(state, username, cloud_alias, departure_date, notes):
7381 _add_departing_employee (state .sdk , username , cloud_alias , departure_date , notes )
7482
7583
76- @departing_employee .command (help = f"{ DEPRECATION_TEXT } \n \n Remove a user from the Departing Employees detection list." )
84+ @departing_employee .command (
85+ help = f"{ DEPRECATION_TEXT } \n \n Remove a user from the Departing Employees detection list."
86+ )
7787@username_arg
7888@sdk_options ()
7989def remove (state , username ):
8090 deprecation_warning (DEPRECATION_TEXT )
8191 _remove_departing_employee (state .sdk , username )
8292
8393
84- @departing_employee .group (cls = OrderedGroup , help = f"{ DEPRECATION_TEXT } \n \n Tools for executing bulk departing employee actions." )
94+ @departing_employee .group (
95+ cls = OrderedGroup ,
96+ help = f"{ DEPRECATION_TEXT } \n \n Tools for executing bulk departing employee actions." ,
97+ )
8598@sdk_options (hidden = True )
8699def bulk (state ):
87100 pass
0 commit comments