File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -526,17 +526,17 @@ def check_request_params(args, loc_needed=True):
526
526
file_exists = os .path .isfile (args .debug_filepath )
527
527
if file_exists is False :
528
528
error_exit ("Specified 'debug_filepath' does not exist" )
529
- print (' File = "{}"' . format ( args .debug_filepath ) )
529
+ print (f ' File = "{ args .debug_filepath } "' )
530
530
if loc_needed :
531
531
if args .debug_line is None :
532
532
error_exit ("'debug_line' not specified for debug request" )
533
- print (" Line = {}" . format ( args .debug_line ) )
533
+ print (f " Line = { args .debug_line } " )
534
534
if args .debug_char is None :
535
535
error_exit ("'debug_char' not specified for debug request" )
536
- print (" Char = {}\n " . format ( args . debug_char ) )
536
+ print (f " Char = { args . debug_char } \n " )
537
537
538
538
539
539
def print_children (obj , indent = "" ):
540
540
for child in obj .get_children ():
541
- print (" {}{}: {}" . format ( indent , child .get_type (), child .FQSN ) )
541
+ print (f " { indent } { child .get_type ()} : { child .FQSN } " )
542
542
print_children (child , indent + " " )
You can’t perform that action at this time.
0 commit comments