Skip to content
Snippets Groups Projects
Commit d440dc9d authored by Christopher Randolph Rhodes's avatar Christopher Randolph Rhodes
Browse files

Merge branch 'issue_client_get_channel' into 'master'

Correct parsing of channel parameter in client

See merge request rhodes/model_server!51
parents 9b1041e2 b510b84a
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ def main(request_func, in_abspath, params):
px_ilp = params['pixel_classifier_path']
ob_ilp = params['object_classifier_path']
channel = getattr(params, 'channel', None)
channel = params.get('channel', None)
mip = params.get('mip', False)
# configure input and output paths
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment