We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87410b1 commit 05411d6Copy full SHA for 05411d6
src/algokit/core/tasks/mint/models.py
@@ -66,7 +66,7 @@ def to_file_path(self) -> Path:
66
file_path = Path(tempfile.mkstemp()[1])
67
try:
68
with file_path.open("w") as file:
69
- json.dump(asdict(self), file)
+ file.write(self.to_json(None))
70
return file_path
71
except FileNotFoundError as err:
72
raise ValueError(f"No such file or directory: '{file_path}'") from err
0 commit comments