Skip to content

Commit 98813f7

Browse files
Merge pull request #124692 from rahulchordiya/patch-1
Update variables.md
2 parents 61d142a + 0ee91e9 commit 98813f7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/automation/shared-resources/variables.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ from automationassets import AutomationAssetNotFound
196196

197197
# get a variable
198198
value = automationassets.get_automation_variable("test-variable")
199-
print value
199+
print(value)
200200

201201
# set a variable (value can be int/bool/string)
202202
automationassets.set_automation_variable("test-variable", True)
@@ -207,7 +207,7 @@ automationassets.set_automation_variable("test-variable", "test-string")
207207
try:
208208
value = automationassets.get_automation_variable("nonexisting variable")
209209
except AutomationAssetNotFound:
210-
print ("variable not found")
210+
print("variable not found")
211211
```
212212

213213
---

0 commit comments

Comments
 (0)