summaryrefslogtreecommitdiffstats
path: root/cli/objects/scopes.py
diff options
context:
space:
mode:
authorJose M. Guisado <jguisado@soleta.eu>2022-05-17 11:24:49 +0200
committerJose M. Guisado <jguisado@soleta.eu>2022-05-17 11:24:49 +0200
commitb765ee50d31b1b629b7572c231d2cf2840a4146f (patch)
tree33d9b0826450d1f05fa78f1dce5041ee38bf2676 /cli/objects/scopes.py
parentd8efd3321c759440c1f9f66b55b6b2c8b1edb67a (diff)
utils: add print_json
Adds a pretty printing function for JSON data. Replaces print for print_json in corresponding cli objects. Follows commit 828d6c0ce7d4a6b4bcd95e97155460fd59856bdd ("list scopes: pretty print scope tree")
Diffstat (limited to 'cli/objects/scopes.py')
-rw-r--r--cli/objects/scopes.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/cli/objects/scopes.py b/cli/objects/scopes.py
index 3517e43..5383932 100644
--- a/cli/objects/scopes.py
+++ b/cli/objects/scopes.py
@@ -5,12 +5,13 @@
# Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
-import json
+import argparse
+
+from cli.utils import print_json
class OgScope():
@staticmethod
def list_scopes(rest):
r = rest.get('/scopes')
- payload = json.loads(r.text)
- print(json.dumps(payload, sort_keys=True, indent=2))
+ print_json(r.text)