mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-26 10:46:11 +00:00
16 lines
397 B
Python
16 lines
397 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
##################################################################################################
|
||
|
|
||
|
import json
|
||
|
|
||
|
##################################################################################################
|
||
|
|
||
|
class JsonDebugPrinter(object):
|
||
|
|
||
|
def __init__(self, json):
|
||
|
self.json = json
|
||
|
|
||
|
def __str__(self):
|
||
|
return json.dumps(self.json, indent=4)
|