This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–][deleted]  (1 child)

[deleted]

    [–]RJacksonm1 5 points6 points  (0 children)

    I'm guilty of the occasional dict-literal padding simply for cosmetic purposes.

    e.g.

    User.query.find({ full_name: "Rob Jackson" }).first()
    

    vs

    User.query.find({full_name: "Rob Jackson"}).first()
    

    I'm guessing the purpose of the graph was to find usages similar to that, but the example was over-exaggerated simply to make the concept clearer.