When I have e.g. the import statement "import copy", and the module (in my case it's a stub, not sure if the problem is more general) named copy contains a function "def deepcopy(o: object) -> object: ...", I cannot access this function in a method writing "copy.deepcopy(someObject)".
When I have e.g. the import statement "import copy", and the module (in my case it's a stub, not sure if the problem is more general) named copy contains a function "def deepcopy(o: object) -> object: ...", I cannot access this function in a method writing "copy.deepcopy(someObject)".