File size: 271 Bytes
6ef117e
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# file_utils
import os
import utils.constants as constants

def cleanup_temp_files():
    for file_path in constants.temp_files:
        try:
            os.remove(file_path)
        except Exception as e:
            print(f"Failed to delete temp file {file_path}: {e}")