chore: rm print

This commit is contained in:
Timothy J. Baek 2024-07-08 12:00:09 -07:00
parent 42742d03d7
commit 3ddd88dad7

View File

@ -139,7 +139,6 @@ async def get_pipe_models():
function_module = app.state.FUNCTIONS[pipe.id]
if hasattr(function_module, "valves") and hasattr(function_module, "Valves"):
print(f"Getting valves for {pipe.id}")
valves = Functions.get_function_valves_by_id(pipe.id)
function_module.valves = function_module.Valves(
**(valves if valves else {})