Update fsrimagevideoupscaler-cli.py

Fix indentation error
This commit is contained in:
Janis Hutz
2023-03-28 10:32:17 +02:00
committed by GitHub
parent 0f05d650f0
commit 7b3da81682

View File

@@ -25,7 +25,7 @@ go = True;
if __name__ == '__main__':
multiprocessing.freeze_support();
if ( os.path.exists( args.outputfile ) ):
if ( os.path.exists( args.outputfile ) ):
if ( input( 'File already exists. Do you want to replace it? (y/n) ' ).lower() == 'y' ):
go = True
os.remove( args.outputfile );
@@ -46,4 +46,4 @@ if __name__ == '__main__':
if ( args.threads != None ):
handler.handler( 'bin/lib/FidelityFX_CLI.exe', args.inputfile, 'custom', '2x', args.outputfile, threads=int( args.threads ) );
else:
handler.handler( 'bin/lib/FidelityFX_CLI.exe', args.inputfile, 'custom', '2x', args.outputfile )
handler.handler( 'bin/lib/FidelityFX_CLI.exe', args.inputfile, 'custom', '2x', args.outputfile )