> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sourcery.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Remove Redundant f-string

#### Sourcery refactoring id: `remove-redundant-fstring`

#### Description

If an f-string has no replacements turn it into a regular string.

#### Before

```python
print(f"Why, oh why am I an f-string")
```

#### After

```python
print("Why, oh why am I an f-string")
```

#### Explanation

Is not necessary to use an f-string that has no replacements so let's keep it
simple and just use a constant string.
