diff --git a/app/main.py b/app/main.py index c1f547a..1eed09a 100644 --- a/app/main.py +++ b/app/main.py @@ -16,11 +16,11 @@ CORS(app) nest_calls = dir(nest) -nest_calls = filter(lambda x: not x.startswith('_'), nest_calls) +nest_calls = list(filter(lambda x: not x.startswith('_'), nest_calls)) nest_calls.sort() topo_calls = dir(topo) -topo_calls = filter(lambda x: not x.startswith('_'), topo_calls) +topo_calls = list(filter(lambda x: not x.startswith('_'), topo_calls)) topo_calls.sort()