1

Improve formatting of basejump

This commit is contained in:
Evan Pratten 2023-11-20 12:40:59 -05:00
parent 1c875b7f21
commit 14614ec75a

View File

@ -3,6 +3,7 @@ import argparse
import sys import sys
import logging import logging
import subprocess import subprocess
import json
from pprint import pprint from pprint import pprint
from pathlib import Path from pathlib import Path
@ -49,7 +50,7 @@ def main() -> int:
# Print the results # Print the results
logger.info("Found the following repos:") logger.info("Found the following repos:")
pprint(repos) print(json.dumps(repos, indent=4))
return 0 return 0