Skip to content

Commit 0846fb9

Browse files
committed
Fix variable define
1 parent 42bfc20 commit 0846fb9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dotextensions/server/handlers/gohandler.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ def figure_n_get(model: MultidefHttp, position: int) -> dict:
8181
if variable.value:
8282
value = jsonmodel_to_json(variable.value)
8383
elif variable.inter:
84-
value = variable.inter
84+
value = str(variable.inter)
8585
elif variable.func:
86-
value = variable.func
86+
value = str(variable.func)
8787
except:
8888
pass
8989
return {

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dothttp-req"
3-
version = "0.0.44a8"
3+
version = "0.0.44a9"
44
description = "Dothttp is Simple http client for testing and development"
55
authors = ["Prasanth <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)