# Needless f-string
[[F-String|F-strings]] containing single [[variable]] without formatting [[Attribute|attributes]] and without other [[f-string]] parts is an [[anti-pattern]] that only adds noise to the code.
```python
# Don't
spam = f"{' '.join(display)}"
# Do
spam = ' '.join(display)
```
---
Bibliography:
- [Detect useless f-strings - github.com/pylint-dev/pylint](https://github.com/pylint-dev/pylint/issues/9530)