Giter VIP home page Giter VIP logo

Comments (14)

smagafurov avatar smagafurov commented on May 20, 2024 1

Very sorry for my inattention.
I did not notice that you are the author of the tool.
:)
Sorry one more time...
And thank for the tool!

from add-trailing-comma.

smagafurov avatar smagafurov commented on May 20, 2024

One more example

bankrupts = [{
    'id': company.bankrupt_id,
    'type': 'company',
} for company in found_companies]

This shouldn't be rewritten with:

bankrupts = [
    {
        'id': company.bankrupt_id,
        'type': 'company',
    } for company in found_companies
]

from add-trailing-comma.

asottile avatar asottile commented on May 20, 2024

Should or shouldn't? The second is consistent with the style.

from add-trailing-comma.

smagafurov avatar smagafurov commented on May 20, 2024

The first is also consistent with the style.
And therefore shouldn't be rewritten.

from add-trailing-comma.

asottile avatar asottile commented on May 20, 2024

It is not, the style prescribes no hugging braces (unless on a line with only braces)

from add-trailing-comma.

smagafurov avatar smagafurov commented on May 20, 2024

sadly...

from add-trailing-comma.

asottile avatar asottile commented on May 20, 2024

No not sadly, that's how this tool is designed. If you don't like that style, don't use the tool! 😆

This issue is about making more constructs get rewritten in that way

from add-trailing-comma.

smagafurov avatar smagafurov commented on May 20, 2024

This tool is very useful
So it is sadly :)

Because I really find this style useful:

async def test_ambiguous(api_request):
    response = await api_request('some_method', some_param='some-value')
    assert response['error'] == {
        'code': 6001,
        'message': 'Validation error',
        'data': {'errors': [
            {'code': 'ambiguous', 'message': 'Ambiguous'},
        ]}
    }

I don't want to expand this line 'data': {'errors': [ because it has no "semantic value".

from add-trailing-comma.

asottile avatar asottile commented on May 20, 2024

Tough! The tool can't possibly determine """semantic value"""

I don't know what to tell you

from add-trailing-comma.

smagafurov avatar smagafurov commented on May 20, 2024

oops...

This case works fine for me

async def test_ambiguous(api_request):
    response = await api_request('some_method', some_param='some-value')
    assert response['error'] == {
        'code': 6001,
        'message': 'Validation error',
        'data': {'errors': [
            {'code': 'ambiguous', 'message': 'Ambiguous'},
        ]}
    }

add-trailing-comma doesn't touch it!

Problem is only with this

bankrupts = [{
    'id': company.bankrupt_id,
    'type': 'company',
} for company in found_companies]

from add-trailing-comma.

asottile avatar asottile commented on May 20, 2024

Look, I think you're missing the point. The whole goal of the tool is so you don't argue about style.

from add-trailing-comma.

smagafurov avatar smagafurov commented on May 20, 2024

The tool just shouldn't touch this case

bankrupts = [{
    'id': company.bankrupt_id,
    'type': 'company',
} for company in found_companies]

And also shouldn't touch this case too

bankrupts = [
    {
        'id': company.bankrupt_id,
        'type': 'company',
    } for company in found_companies
]

They are both valid

A person can choose according to "semantic value" or some other "magic" he likes

from add-trailing-comma.

asottile avatar asottile commented on May 20, 2024

I'm sorry, the first one is ugly and will continue to be rewritten. Please stop

from add-trailing-comma.

smagafurov avatar smagafurov commented on May 20, 2024

PyCharm Reformat Code works exactly that way i want
https://www.jetbrains.com/help/pycharm/reformatting-source-code.html

Please stop

ok

from add-trailing-comma.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.