Real and simple answer: None.
Python functions / methods do not know how many requests are requested, since the return tuple is unpacked after the function call.
underscore (_) , , , :
def f():
return 1, 2, 3
a, b, c = f()
a, _, _ = f()
_, b, _ = f()
, (_) pylint .