Update Coding standards authored by fima's avatar fima
......@@ -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:
......
......