Following up on this question regarding reloading a module, how do I reload a specific function from a changed module?
pseudo-code:
from foo import b
This one also works.
# Import of my_function and module
import my_utils
from my_utils import my_function
# Test:
my_function()
# For reloading:
from importlib import reload
reload(my_utils)
from my_utils import my_function
# Test again:
my_function()