Может кто-нибудь объяснить, почему Pycharm делает здесь предупреждение типа?
import numpy as np
def test(arr: np.ndarray) -> tuple:
to_return = np.where((arr > 0.1) & (arr < 0.9))
return to_return # marks the text with "Expected type 'tuple', got 'ndarray' instead"
a = np.random.rand(10, 10)
res = test(a)
print(type(res)) #<class 'tuple'>