You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can I get functions defined in a object like to be mapped out? Currently, they are being ignored...
Here's some example code where MappedFunction() and anotherFunc() are succefully being included in the callgraph but nothing from Utils ... ? This was mostly done to keep the global namespace "clean"...
This doesn't work for certain types of imports either.
from .my_module import utils
from .my_module import utils as mm_utils
from .my_module.utils import call3
def root():
utils.call1()
mm_utils.call2()
call3()
How can I get functions defined in a object like to be mapped out? Currently, they are being ignored...
Here's some example code where
MappedFunction()
andanotherFunc()
are succefully being included in the callgraph but nothing fromUtils
... ? This was mostly done to keep the global namespace "clean"...The text was updated successfully, but these errors were encountered: