Skip to content
Snippets Groups Projects
Commit 39f38a4b authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[algorithm] Use simplejson

No need for version detection in this case
parent a1e373d4
No related branches found
No related tags found
1 merge request!63Standardize simplejson
...@@ -49,10 +49,9 @@ Forward importing from :py:mod:`beat.backend.python.algorithm` ...@@ -49,10 +49,9 @@ Forward importing from :py:mod:`beat.backend.python.algorithm`
import os import os
import six import six
import sys
import json
import numpy import numpy
import pkg_resources import pkg_resources
import simplejson as json
from . import dataformat from . import dataformat
from . import library from . import library
...@@ -69,9 +68,6 @@ def load_algorithm_prototype(prefix): ...@@ -69,9 +68,6 @@ def load_algorithm_prototype(prefix):
prototype_data = pkg_resources.resource_string( prototype_data = pkg_resources.resource_string(
__name__, "prototypes/algorithm.json" __name__, "prototypes/algorithm.json"
) )
if sys.version_info < (3, 6):
prototype_data = prototype_data.decode("utf-8")
algorithm_data = json.loads(prototype_data) algorithm_data = json.loads(prototype_data)
ref_dataformats = ["integer", "integers"] ref_dataformats = ["integer", "integers"]
dataformat = None dataformat = None
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment