Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove splatting of listcomp -> splat of generator #541

Merged
merged 1 commit into from Sep 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 0 additions & 11 deletions README.md
Expand Up @@ -498,17 +498,6 @@ Availability:
```


### Unpacking argument list comprehensions

Availability:
- `--py3-plus` is passed on the commandline.

```diff
-foo(*[i for i in bar])
+foo(*(i for i in bar))
```


### Rewrite `xml.etree.cElementTree` to `xml.etree.ElementTree`

Availability:
Expand Down
26 changes: 0 additions & 26 deletions pyupgrade/_plugins/unpacking_argument_list_comprehensions.py

This file was deleted.

80 changes: 0 additions & 80 deletions tests/features/unpacking_argument_list_comprehensions_test.py

This file was deleted.