mirror of
https://github.com/wassname/persona-steering-template-library.git
synced 2026-06-27 16:30:55 +08:00
15 lines
290 B
Python
15 lines
290 B
Python
"""Write the canonical README/Page Plotly figure as PNG and SVG."""
|
|
from __future__ import annotations
|
|
|
|
import readme_plot
|
|
|
|
|
|
def main() -> None:
|
|
readme_plot.write_main_plot_assets()
|
|
print(readme_plot.MAIN_PNG)
|
|
print(readme_plot.MAIN_SVG)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|