gootsaud / bike-riding

Empty block of code found PTC-W0047
Anti-pattern
Major
2 years ago2 years old
Body doesn't contain any code
177
178def consume(iterable: t.Iterable[t.Any]) -> None:
179    """Consumes an iterable without doing anything with it."""
180    for _ in iterable:181        pass
182
183