@@ -175,9 +175,8 @@ def _get_virtual_bandwidth(env, start, end):
175175@click .option (
176176 '--start' ,
177177 callback = _validate_datetime ,
178- default = (
179- datetime .datetime .now () - datetime .timedelta (days = 30 )
180- ).strftime ('%Y-%m-%d' ),
178+ default = (datetime .datetime .now () - datetime .timedelta (days = 30 )
179+ ).strftime ('%Y-%m-%d' ),
181180 help = "datetime in the format 'YYYY-MM-DD' or 'YYYY-MM-DD HH:MM:SS'" )
182181@click .option (
183182 '--end' ,
@@ -187,9 +186,11 @@ def _get_virtual_bandwidth(env, start, end):
187186@click .option ('--sortby' , help = 'Column to sort by' ,
188187 default = 'hostname' ,
189188 show_default = True )
190- @click .option ('--virtual' , is_flag = True , help = 'Show the all bandwidth summary for each virtual server' ,
189+ @click .option ('--virtual' , is_flag = True ,
190+ help = 'Show the all bandwidth summary for each virtual server' ,
191191 default = False )
192- @click .option ('--server' , is_flag = True , help = 'show the all bandwidth summary for each hardware server' ,
192+ @click .option ('--server' , is_flag = True ,
193+ help = 'show the all bandwidth summary for each hardware server' ,
193194 default = False )
194195@environment .pass_env
195196def cli (env , start , end , sortby , virtual , server ):
0 commit comments