```python arg = 1 # any type, not string type(arg)(' ') in arg ``` `ruff --fix --select UP003 foo.py` turns it into: ```python arg = 1 # any type, not string str in arg ```