Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 473 Bytes

CONTRIBUTING.md

File metadata and controls

18 lines (12 loc) · 473 Bytes

Contribution Guidelines:

Coding Conventions

Code to follow PEP8 style guide https://www.python.org/dev/peps/pep-0008

Naming conventions:

Type Style
class Names CappedWords
module, function and variables under_scored
private functions and variables _leading_underscore
constants UPPERCASE

Testing

All additional functionalilty should be complete with relevant tests where possible. Please ask if you are unsure.