summaryrefslogtreecommitdiff
path: root/tests/functional/r/regression_02/regression_3976.py
blob: 3610e9e3028181a3e19e7c9cebf729a00aee8a51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
Regression test for https://github.com/PyCQA/pylint/issues/3976

E1123: Unexpected keyword argument 'include_extras' in function call (unexpected-keyword-arg)
"""

import typing_extensions


def function():
    """Simple function"""


typing_extensions.get_type_hints(function, include_extras=True)