Skip to content

Commit

Permalink
Fix variable define
Browse files Browse the repository at this point in the history
  • Loading branch information
cedric05 committed Jan 1, 2025
1 parent 42bfc20 commit 0846fb9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dotextensions/server/handlers/gohandler.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ def figure_n_get(model: MultidefHttp, position: int) -> dict:
if variable.value:
value = jsonmodel_to_json(variable.value)
elif variable.inter:
value = variable.inter
value = str(variable.inter)
elif variable.func:
value = variable.func
value = str(variable.func)
except:
pass
return {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dothttp-req"
version = "0.0.44a8"
version = "0.0.44a9"
description = "Dothttp is Simple http client for testing and development"
authors = ["Prasanth <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 0846fb9

Please sign in to comment.