polortiz4 / bme590_assignment02

MIT License
0 stars 0 forks source link

nit: don't mix snake_case and camelCase #45

Closed suyashkumar closed 7 years ago

suyashkumar commented 7 years ago

another nit[pick] on the style front--like here generally don't mix snake_case and camelCase.

most variables and functions in python tend to follow snake_case whereas classes tend to follow CapitalCamelCase. When reading code this convention helps differentiate creating a new class instance vs calling a function.