ruff/resources/test/fixtures/E731.py
2022-09-06 20:18:46 -04:00

6 lines
167 B
Python

from typing import Callable, Iterable
a = lambda x: x**2
b = map(lambda x: 2 * x, range(3))
c: Callable = lambda x: x**2
d: Iterable = map(lambda x: 2 * x, range(3))