Skip to content

Commit

Permalink
Fix unlink file
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhorcas committed May 24, 2024
1 parent 63b967e commit 07d2771
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flamapy/metamodels/bdd_metamodel/models/bdd_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def bdd_file(self, dddmp_file: str) -> None:

def __del__(self) -> None:
if self._bdd_file is not None and self._temporal_bdd_file:
Path(self._bdd_file + '.dddmp').unlink()
Path(self._bdd_file).unlink()

def _set_global_constants(self) -> None:
"""Private auxiliary function that configures the following global constants.
Expand Down

0 comments on commit 07d2771

Please sign in to comment.