Hi All, why when i `variables.get("xx", default=N...
# ask-community
m
Hi All, why when i
variables.get("xx", default=None)
i get
<coroutine object get at 0x12ed8fe40>
? how can i get the actual content of the variable? (my variable is a dictionary: {y:1, v:2}). Thanks
1
j
Hi! you're likely accessing your variable from an async context, if so the syntax would be:
Copy code
await variables.get("...")
m
Thanks!! 🙂