Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
beat
beat.core
Commits
39f38a4b
Commit
39f38a4b
authored
Mar 20, 2019
by
Samuel GAIST
Browse files
[algorithm] Use simplejson
No need for version detection in this case
parent
a1e373d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
beat/core/algorithm.py
View file @
39f38a4b
...
...
@@ -49,10 +49,9 @@ Forward importing from :py:mod:`beat.backend.python.algorithm`
import
os
import
six
import
sys
import
json
import
numpy
import
pkg_resources
import
simplejson
as
json
from
.
import
dataformat
from
.
import
library
...
...
@@ -69,9 +68,6 @@ def load_algorithm_prototype(prefix):
prototype_data
=
pkg_resources
.
resource_string
(
__name__
,
"prototypes/algorithm.json"
)
if
sys
.
version_info
<
(
3
,
6
):
prototype_data
=
prototype_data
.
decode
(
"utf-8"
)
algorithm_data
=
json
.
loads
(
prototype_data
)
ref_dataformats
=
[
"integer"
,
"integers"
]
dataformat
=
None
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment