Python Force Realod

from importlib import reload  
import foo

foo = reload(foo)
Cerbrain