I have a piece of code that does not run but I do not know why.
It fails somewhere in the library but it seems there is no error thrown so I do not know what goes wrong:
the pseudo code:
print('test')
try:
df = DeltaTable('mydata/').to_pandas()
except:
print('test2')
print('test3')
So I would expect to get either test
and test3
as an output or test
and test2
but I am only getting test
Is there any other way to get/catch whatever is going wrong in the library?