Skip to content

Commit

Permalink
fix: don't remove the process output temp file
Browse files Browse the repository at this point in the history
  • Loading branch information
Danthewaann committed Jan 8, 2024
1 parent 3404bf5 commit 0e9dd14
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/pyallel/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,8 +302,6 @@ def run(self) -> None:
def __del__(self) -> None:
if self.fd_read:
self.fd_read.close()
if self.fd_name:
self.fd_name.unlink(missing_ok=True)

def poll(self) -> int | None:
if self.process:
Expand Down

0 comments on commit 0e9dd14

Please sign in to comment.