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.
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.