13

I really dislike when people don't use braces { } on if/else statements.

If(almond.harvestStatus == undefined) almond.harvestMode=false
almond.dropdown = false.

Comments
  • 1
    @csessh Probably one of the worst things with Python, imo. Makes it harder to read. Good old C syntax is great.
  • 0
    Agreed, but I worked with some guys that had a style guide that forced no braces if you put the if statement on a single line:

    if (someCondition) return false

    Hard to go back now
Add Comment