The function takes a string as input and removes all numerical digits from it, then returns the resulting string.

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