"vscode:/vscode.git/clone" did not exist on "3b1f8b164dd19b905c24064214005b0320cba256"
Commit 034411e4 authored by Michael Poluektov's avatar Michael Poluektov
Browse files

fix: type not manifold

parent baf58ef3
......@@ -147,9 +147,7 @@ async def get_pipe_models():
function_module = get_function_module(pipe.id)
# Check if function is a manifold
if hasattr(function_module, "type"):
if not function_module.type == "manifold":
continue
if hasattr(function_module, "type") and function_module.type == "manifold":
manifold_pipes = []
# Check if pipes is a function or a list
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment