flask json argument needs to be a dict for unviersal use of the rest api
diff --git a/src/emuvim/cli/rest/network.py b/src/emuvim/cli/rest/network.py
index c87a924..c6e1dcc 100755
--- a/src/emuvim/cli/rest/network.py
+++ b/src/emuvim/cli/rest/network.py
@@ -61,7 +61,7 @@
(args.get("endpoint"),
vnf_src_name,
vnf_dst_name),
- json=json.dumps(params))
+ json=params)
pp.pprint(response.json())
def remove(self, args):
@@ -80,7 +80,7 @@
(args.get("endpoint"),
vnf_src_name,
vnf_dst_name),
- json=json.dumps(params))
+ json=params)
pp.pprint(response.json())
def _parse_vnf_name(self, vnf_name_str):