py-kms/docs/Contributing.md
simonmicro bc7381895b
Specify the branch to base on
Signed-off-by: simonmicro <simon@simonmicro.de>
2025-12-06 19:00:32 +01:00

566 B

Contributing

You want to improve this project? Awesome! But before you write or modify the existing source code, please note the following guideline:

  • Always base your branch on the latest next branch to avoid merge conflicts.
  • 8-space indentation without tabs.
  • Docstrings as this:
    """ This is single line docstring. """
    """ This is a
    """ multiline comment.
  • Wrap lines only if really long (it does not matter 79 chars return)
  • For the rest a bit as it comes with a look at PEP8 :)