deduplication pass

This commit is contained in:
2026-04-03 18:19:08 -07:00
parent f6b47e6d79
commit c8d766677b
42 changed files with 484 additions and 689 deletions

View File

@@ -101,7 +101,7 @@ class Save:
else:
raise ValueError(f"Save does not support input type: {type(value).__name__}")
self._send_warning(f"Saved to {path.name}")
emit_warning(f"Saved to {path.name}")
emit_file_download(str(path))
return ()
@@ -373,6 +373,3 @@ class Save:
lines.append(" endfacet")
lines.append("endsolid tono")
path.write_text("\n".join(lines) + "\n", encoding="utf-8")
def _send_warning(self, message: str):
emit_warning(message)