Skip to content

Commit

Permalink
Merge pull request #2251 from Ericgig/fixes_4.7_pxy
Browse files Browse the repository at this point in the history
Fix temp file removal
  • Loading branch information
Ericgig committed Oct 27, 2023
2 parents 8babeda + 2d3e551 commit 94d5ab5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions doc/changes/2251.bugfix
@@ -0,0 +1 @@
Fix name of temp files for removal after use.
2 changes: 1 addition & 1 deletion qutip/qobjevo.py
Expand Up @@ -87,7 +87,7 @@ def __init__(self):
self.files = []

def add(self, file_):
self.files += [file_ + ".pyx"]
self.files += [file_]

def clean(self):
to_del = []
Expand Down

0 comments on commit 94d5ab5

Please sign in to comment.