Format results as JSON.
(results: Dict[str, Dict[str, Any]])
| 822 | |
| 823 | @staticmethod |
| 824 | def format_json(results: Dict[str, Dict[str, Any]]) -> str: |
| 825 | """Format results as JSON.""" |
| 826 | import json |
| 827 | return json.dumps(results, indent=2) |
| 828 | |
| 829 | @staticmethod |
| 830 | def format_antagonistic(results: Dict[str, Dict[str, Any]]) -> str: |