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

Set literals have extra quotes #210

Closed
JonathanPlasse opened this issue May 14, 2024 · 0 comments · Fixed by #214
Closed

Set literals have extra quotes #210

JonathanPlasse opened this issue May 14, 2024 · 0 comments · Fixed by #214
Assignees
Labels

Comments

@JonathanPlasse
Copy link
Sponsor Contributor

Expected behavior

Set literals should not have extra quotes.

Description about the bug

Instead of this

def fbx(
    object_types: typing.Any | None = {
        '"CAMERA"',
        '"EMPTY"',
        '"MESH"',
        '"ARMATURE"',
        '"OTHER"',
        '"LIGHT"',
    }

It should be this

def fbx(
    object_types: typing.Any | None = {
        "CAMERA",
        "EMPTY",
        "MESH",
        "ARMATURE",
        "OTHER",
        "LIGHT",
    }

Screenshot from 2024-05-14 20-14-33

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants