## Rule Use yield from if possible ## Example ``` # Bad for item in iterable: yield item # Good yield from iterable ```