I have just moved from using Spyder to PyCharm & so far think its great. I have one issue though. When I run a simple function it runs as expected. The problem comes when I make a small change to the function, for example add an extra column to a dataframe that will be returned by the function, it is not reflected when I re-run the code. If I close & re-open PyCharm then the change is reflected, am I missing something?
Update
I run the function within the python console in pycharm. So,
from some_direcotry.some_file import some_function
output = some_function()
I then make a change to the function, crtl+s the file & run the line below,
output = some_function()
But it does not reflect the changes I made