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

Only change builtin types in UseTypesFromTypingRule #178

Merged
merged 2 commits into from
Mar 31, 2021

Conversation

alambert
Copy link
Contributor

Problem

UseTypesFromTypingRule incorrectly changed list to List in this real-world snippet:

from typing import List as list
from graphene import List

def function(a: list[int]) -> List[int]:
    return []

Solution

Refine the check to confirm the node is a builtin

Test Plan

Added test and ran tox -e py38 -- fixit.tests.UseTypesFromTypingRule

*Problem*

`UseTypesFromTypingRule` incorrectly changed `list` to `List` in
this real-world snippet:

```
from typing import List as list
from graphene import List

def function(a: list[int]) -> List[int]:
    return []
```

*Solution*

Refine the check to confirm the node is a builtin
@facebook-github-bot facebook-github-bot added the CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed. label Mar 25, 2021
@jimmylai
Copy link
Contributor

LGTM, @alambert, thanks for contributing!

@jimmylai jimmylai merged commit 623d0d3 into Instagram:master Mar 31, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CLA Signed This label is managed by the Facebook bot. Authors need to sign the CLA before a PR can be reviewed.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants