Guest User

Untitled

a guest
Jul 7th, 2022
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. import os
  2. import tempfile
  3.  
  4.  
  5. class A:
  6. def __init__(self):
  7. self.temp_file = tempfile.NamedTemporaryFile()
  8.  
  9. if __name__ == "__main__":
  10. a = A()
  11. os.remove(a.temp_file.name)
  12.  
Advertisement
Add Comment
Please, Sign In to add comment