Skip to content

Commit b22411e

Browse files
Update gitbook documentation
1 parent 27e4f25 commit b22411e

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

docs/gitbook/from-zero-to-hero-tutorial/09_contribute-to-avalanche.md

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
---
1+
]---
22
description: How to Contribute Back to the Avalanche Community
33
---
44

@@ -32,16 +32,19 @@ First of all, [install _Avalanche_ in "_Developer Mode"_](https://avalanche.cont
3232

3333
**The following rules should be respected:**
3434

35-
* Use PEP8 coding style and work within the 80 columns limit.
35+
* Use [*Black*](https://github.com/psf/black) code formatting for a consistent coding style, which also handles line lengths (the 88 columns limit) automatically.
3636
* Always pull before pushing a commit.
3737
* Try to assign to yourself one issue at a time.
3838
* Try closing an issue **within roughly 7 days**. If you are not able to do that, please break it down into multiple ones you can tackle more easily, or you can always remove your assignment to the issue!
3939
* If you add a new feature, please include also a _test_ and a usage example in your PR.
4040

41-
Also, before making your PR **make sure** that the following commands return without any errors:
41+
Also, before making your PR, first run the following command for code formatting with *Black*:
42+
``` bash
43+
black .
44+
```
4245

46+
then, **make sure** that the following command returns no test errors:
4347
```bash
44-
pycodestyle avalanche tests examples
4548
python -m unittest discover tests -v
4649
```
4750

@@ -74,3 +77,5 @@ To contribute to the documentation you need to follow the steps below:
7477

7578
You can run _this chapter_ and play with it on Google Colaboratory:
7679
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/ContinualAI/avalanche/blob/master/notebooks/from-zero-to-hero-tutorial/09_contribute-to-avalanche.ipynb)
80+
81+

0 commit comments

Comments
 (0)