[rpc] Import ujson if available, else use json

master
Daniel Edgecumbe 7 years ago
parent f3dd4f8a7f
commit b0b3bde4d9

@ -7,7 +7,10 @@ import async_timeout
import base64
import os
import ujson as json
try:
import ujson as json
except ImportError:
import json
import config

Loading…
Cancel
Save