Skip to content

Commit

Permalink
✔ Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
weibeu committed Sep 27, 2020
1 parent 1a90cd1 commit 6f3aed6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ Minimal Style Guide

You may or may not find it much relevant but I prefer few conventions and code style, some of which are list below.

- Make use of present tense for your commit messages. For example, use "Fix state mismatch error" rather than ~~"Fixed state mismatch error"~~.
- Make use of present tense for your commit messages. For example, use "Fix state mismatch error" rather than "Fixed state mismatch error".
- Please do follow the Python `PEP 8`_ style guide.
- You may or may not include docstrings. Although it's required but can also be added later on after making the PR.
- Prefer prefixing the commit messages with emojis. Check the `Emoji Usage Reference`_ for info on which emoji to use.
- Explicitly mention and inherit ``object`` when writing classes. For example, prefer `class Foo(object): ...` over ~~class Foo: ...~~.
- Explicitly mention and inherit ``object`` when writing classes. For example, prefer `class Foo(object): ...` over ``class Foo: ...``.
- Prefer relative imports over absolute imports.

Emoji Usage Reference
Expand Down

0 comments on commit 6f3aed6

Please sign in to comment.