summaryrefslogtreecommitdiff
path: root/tests/functional/r/regression_02/regression_3976.py
blob: 27c119d47bcb5a19a7d1b7c8ab2e3a0abe4ae9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
"""
Regression test for https://github.com/pylint-dev/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)