utils.py 162 B

12345678910
  1. # Copyright © 2023 Ingram Micro Inc. All rights reserved.
  2. import os
  3. def remove_file(path):
  4. try:
  5. os.remove(path)
  6. except OSError:
  7. pass