quotation marks for everyone yay

This commit is contained in:
trixoniisama
2024-11-19 10:28:35 +01:00
parent 110f1cf5a8
commit f346a9a679

View File

@@ -87,7 +87,6 @@ def fast_pass(
:type workers: int :type workers: int
""" """
if IS_WINDOWS:
# Enclose paths in quotes if they contain spaces # Enclose paths in quotes if they contain spaces
input_file = f'"{input_file}"' if ' ' in input_file else input_file input_file = f'"{input_file}"' if ' ' in input_file else input_file
output_file = f'"{output_file}"' if ' ' in output_file else output_file output_file = f'"{output_file}"' if ' ' in output_file else output_file