> ## 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.

# Unwrap Iterable Construction

#### Sourcery refactoring id: `unwrap-iterable-construction`

#### Description

Unwrap an iterable constructor into a literal iterable.

#### Before

```python
tuple([user_config, *package_config, local_config])
```

#### After

```python
(user_config, *package_config, local_config)
```

#### Explanation

Creating the intermediate constant is unnecessary and needlessly verbose.
