You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there any solution to this? These warnings are quite annoying and I did not manage to find out how to call the functions differently to avoid the warnings. The tutorial / examples apparently have also not been updated to the new function definitions.
You just need to be explicit with all function arguments to silent the warnings.
in this specific case: fury.window.record(scene, out_path="viz_arrow.png", size=(600, 600)) should be fury.window.record(scene=scene, out_path="viz_arrow.png", size=(600, 600)).
I hope it helps to update your code and avoid those warnings.
Note that those warnings will become an error after several realeases.
Description
Way to reproduce
https://fury.gl/latest/auto_examples/01_introductory/viz_arrow.html#sphx-glr-auto-examples-01-introductory-viz-arrow-py
The text was updated successfully, but these errors were encountered: