From bf19bb7dcecfe817f52c8744cc6d0301dbf449c0 Mon Sep 17 00:00:00 2001 From: Charlotte Weaver Date: Fri, 3 Aug 2018 11:08:44 -0700 Subject: [PATCH] Formatting --- server/app/app.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/app/app.py b/server/app/app.py index a7191acf..d0f42cd1 100644 --- a/server/app/app.py +++ b/server/app/app.py @@ -53,7 +53,8 @@ def run_scanpy(args): ) from .scanpy_engine.scanpy_engine import ScanpyEngine - data = ScanpyEngine(args.data_directory, schema="data_schema.json", graph_method=args.layout, diffexp_method=args.diffexp) + data = ScanpyEngine(args.data_directory, schema="data_schema.json", + graph_method=args.layout, diffexp_method=args.diffexp) app.run(host="127.0.0.1", debug=True, port=args.port)