This commit is contained in:
yumoqing 2022-06-21 19:11:12 +08:00
parent 6c3677af06
commit 3f90c68483
3 changed files with 10 additions and 3 deletions

View File

@ -1,7 +1,11 @@
import os
import sys
import codecs
import ujson as json
# import ujson as json
try:
import ujson as json
except:
import json
from traceback import print_exc
from functools import partial

View File

@ -1,5 +1,8 @@
import time
import ujson as json
try:
import ujson as json
except:
import json
from functools import partial
from kivy.logger import Logger

View File

@ -1 +1 @@
__version__ = '0.2.6'
__version__ = '0.2.7'