I am importing one module from another module
1st module has
a variable initialized to None
a method
In another module I am importing the first module using
from 1stmodule import method
but this is initializing the variable again to None when I import, how can I import only the method to second module without changing the variable?