Skip to content

Commit

Permalink
Update NeutralinoExtension.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hschneider committed Nov 23, 2023
1 parent 1007c61 commit 389c6f6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions extensions/python/NeutralinoExtension.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
class NeutralinoExtension:
def __init__(self, debug=False):

self.version = "1.1.7"
self.version = "1.1.8"

parser = ArgumentParser()
parser.add_argument('--nl-port')
Expand Down Expand Up @@ -128,9 +128,9 @@ def parseFunctionCall(self, d):
# p can be JSON or string
#
try:
d = json.loads(p)
p = json.loads(p)
except:
d = p
pass

return f, p

Expand Down

0 comments on commit 389c6f6

Please sign in to comment.