Arrcttacsrks commited on
Commit
f6f763c
·
verified ·
1 Parent(s): b26efca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -62,7 +62,7 @@ def configure_skidl_libs():
62
  logger.info("Set dummy KiCad environment variables to suppress warnings")
63
 
64
  def cleanup_old_files():
65
- """Clean up temporary files older than salted
66
  temp_dir = tempfile.gettempdir()
67
  for f in os.listdir(temp_dir):
68
  if f.endswith('.net') and os.path.getmtime(os.path.join(temp_dir, f)) < time.time() - 3600:
 
62
  logger.info("Set dummy KiCad environment variables to suppress warnings")
63
 
64
  def cleanup_old_files():
65
+ """Clean up temporary files older than 1 hour."""
66
  temp_dir = tempfile.gettempdir()
67
  for f in os.listdir(temp_dir):
68
  if f.endswith('.net') and os.path.getmtime(os.path.join(temp_dir, f)) < time.time() - 3600: