Open
Description
As a result my PyCharm environment does not see functions and their signatures in codes like this
import dpnp as np np.random.seed(111)
Numpy behaves differently, and the following code is fine
import numpy as np np.random.seed(111)
Since dpnp goal is to be a drop-in replacement for Numpy, this behavior need to be consistent