The function takes a string input and returns "none" for all provided inputs.

[CODE]:
```python
def f(x: str):
    return None
```