Skip to content

Didn't work implicit concat strings #169

@wimglenn

Description

@wimglenn

Thanks for making this really helpful tool! I did find one problem:

Input:

d = "dog"
msg = (
    "The quick brown fox jumps over the lazy dog "
    "The quick brown fox jumps over the lazy {}".format(d)
)

Expected output:

d = "dog"
msg = (
    "The quick brown fox jumps over the lazy dog "
    f"The quick brown fox jumps over the lazy {d}"
)

Actual output:

Same as input - unchanged. Adding -tc -tj -a makes no difference.

Metadata

Metadata

Assignees

No one assigned

    Labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions