adlmtl

Results 1 comments of adlmtl

I'm having similar issue with a tempfile I'm yielding.... ``` def create_temp_file(): fd, path = tempfile.mkstemp(suffix='.csv') try: yield fd, path finally: os.unlink(path) ``` When I try to return the file...