import pandas as pd
data = pd.read_csv(some_data)
I put a breakpoint in the second line of this code and Visual Studio Code stops at this breakpoint. But when I try to step into the "read_csv" function vscode apparently performs a "step over". I also tried setting a breakpoint inside the "read_csv" function but with the same result.
So how do I step into the mentioned function?
some_data? Also, I assume this is Python 3?