-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
- do we only use json features that are available in ujson?
- should we make ujson a proper dependency?
- if we keep it optional, should we use it everywhere (e.g., the handlers) if it's installed?*
- or should we just drop the try/except import in
mflow.pysince it's not worth it?
*it would be easy to add a shim xjson.py (or similar):
try:
from ujson import *
except ImportError:
from json import *and do:
from . import xjson as jsonor just add it to utils.py:
try:
import ujson as json
except:
import jsonand do:
from .utils import jsonReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels