is there a migration guide or anything for switchi...
# prefect-community
b
is there a migration guide or anything for switching to the new result handling implied by https://docs.prefect.io/core/PINs/PIN-16-Results-and-Targets.html and https://github.com/PrefectHQ/prefect/pull/2151/files ? I think I understand the concept but I'm not sure exactly what I'm supposed to do about it 🙂 or maybe the answer is "nothing yet" but then the deprecation warning feels a bit premature...?
c
Hey Brett — those new APIs haven’t been hooked up yet but once they are we’ll definitely include a thorough guide (one hasn’t been written yet though)
b
seeing a ton of warnings with no way to silence them is real torture for my OCD side...guess I'll consider this exposure therapy 😅
🤣 3
l
not sure how well this works for you but one option is to throw one of these before you import prefect to silence them
Copy code
import warnings
warnings.filterwarnings("ignore", category=UserWarning)