I am running the following code in DataSpell
some_object = function_with_very_long_computations()
I seem not able to find any indicators in DataSpell to confirm that line execution is completed. Especially in the case where some_object already exists and I am trying to refresh it. I can surely write something new_variable = 3+5
and run it immediately after my main line and check when new_variable
is populated, but this looks like an awkward solution.
Any suggestions?