Changes
Page history
Update Coding standards
authored
Jun 15, 2023
by
fima
Show whitespace changes
Inline
Side-by-side
Home/Coding-standards.md
View page @
a40720e3
...
...
@@ -40,15 +40,15 @@ For example, your project structure could be like this:
```
example-repo/
┣
qimex/
┃ ┣
__init__.py
┃ ┗
examples.py
┣
tests/
┃ ┣
__init__.py
┃ ┗
test_examples.py
┣
.gitignore
┣
LICENSE
┗
README.md
├
qimex/
│ ├
__init__.py
│ └
examples.py
├
tests/
│ ├
__init__.py
│ └
test_examples.py
├
.gitignore
├
LICENSE
└
README.md
```
Inside
`examples.py`
you could have this function:
...
...
...
...