update plot command (#1504)

This commit is contained in:
Brandon Hancock (bhancock_ai)
2024-10-24 14:44:30 -04:00
committed by GitHub
parent 8bc07e6071
commit 201e652fa2

View File

@@ -7,7 +7,7 @@ def plot_flow() -> None:
"""
Plot the flow by running a command in the UV environment.
"""
command = ["uv", "run", "plot_flow"]
command = ["uv", "run", "plot"]
try:
result = subprocess.run(command, capture_output=False, text=True, check=True)