The function takes a string input and removes all digits (0-9) from it.

[CODE]: 
```python
def remove_digits(input_str):
    return ''.join(char for char in input_str if not char.isdigit())
```