Skip to content

Commit

Permalink
CAP-WIP: modifiedd functioning CI componentizer
Browse files Browse the repository at this point in the history
  • Loading branch information
9and3 committed Jan 28, 2024
1 parent 44be04e commit 4dd1b19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 32 deletions.
29 changes: 0 additions & 29 deletions GH/PyGH/components/scriptsynccpy/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,35 +9,6 @@
"ghpython": {
"marshalGuids": true,
"iconDisplay": 2,
"inputParameters": [
{
"name": "X",
"nickname": "x",
"description": "The X value of the component.",
"optional": true,
"allowTreeAccess": true,
"showTypeHints": true,
"scriptParamAccess": "item",
"wireDisplay": "default",
"sourceCount": 0,
"typeHintID": "float",
"reverse": false,
"simplify": false
},
{
"name": "Y",
"nickname": "y",
"description": "The Y value of the component.",
"optional": true,
"allowTreeAccess": true,
"showTypeHints": true,
"scriptParamAccess": "item",
"wireDisplay": "default",
"sourceCount": 0,
"typeHintID": "float",
"simplify": false
}
],
"outputParameters": [
{
"name": "stdout",
Expand Down
9 changes: 6 additions & 3 deletions GH/PyGH/test/runner_script.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
#! python3

x = 123
y = 456
a = x - y
c = x + y
b = 123456

print(f"runner_script.py::x value: {x}")
print(f"runner_script.py::y value: {y}")
a = 422
c = x + y
b = 1239
print(f"runner_script.py::a value: {a}")

0 comments on commit 4dd1b19

Please sign in to comment.