Gordon
04/08/2024, 2:05 PMAttributeError: 'coroutine' object has no attribute 'get'
Below is the code to generate this error:
from prefect.blocks.system import Secret
secret_block = Secret.load("name-of-my-block")
secret_block.get()
I believe this is specific to working in Jupyter. Any recommendations to resolve this error? I've added a couple of related docs in this thread.Alexander Azzam
04/08/2024, 2:10 PMsecret_block = await Secret.load('name-of-my-block')
does that work for you?