diff options
| author | George Rodrigues <georgerodrigues@live.com.au> | 2022-10-05 13:32:07 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-10-05 17:32:07 +0100 |
| commit | 959f4cbb621868a4f0c1701f54ad2a1f45d889af (patch) | |
| tree | 96b126c802cacb3645ed9a0bfda3a13ae5c915dd /docs/coding_conventions_python.md | |
| parent | 5f671de13a01c88ceb86874dba91e4e66c4a3d51 (diff) | |
docs: some typos (#18582)
probably hacktoberism
Diffstat (limited to 'docs/coding_conventions_python.md')
| -rw-r--r-- | docs/coding_conventions_python.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/coding_conventions_python.md b/docs/coding_conventions_python.md index 960b9cb49e..2b68703448 100644 --- a/docs/coding_conventions_python.md +++ b/docs/coding_conventions_python.md | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | Most of our style follows PEP8 with some local modifications to make things less nit-picky. | 3 | Most of our style follows PEP8 with some local modifications to make things less nit-picky. |
| 4 | 4 | ||
| 5 | * We target Python 3.7 for compatability with all supported platforms. | 5 | * We target Python 3.7 for compatibility with all supported platforms. |
| 6 | * We indent using four (4) spaces (soft tabs) | 6 | * We indent using four (4) spaces (soft tabs) |
| 7 | * We encourage liberal use of comments | 7 | * We encourage liberal use of comments |
| 8 | * Think of them as a story describing the feature | 8 | * Think of them as a story describing the feature |
| @@ -21,7 +21,7 @@ You can use [yapf](https://github.com/google/yapf) to style your code. We provid | |||
| 21 | 21 | ||
| 22 | We don't have a hard and fast rule for when to use `import ...` vs `from ... import ...`. Understandability and maintainability is our ultimate goal. | 22 | We don't have a hard and fast rule for when to use `import ...` vs `from ... import ...`. Understandability and maintainability is our ultimate goal. |
| 23 | 23 | ||
| 24 | Generally we prefer to import specific function and class names from a module to keep code shorter and easier to understand. Sometimes this results in a name that is ambiguous, and in such cases we prefer to import the module instead. You should avoid using the "as" keyword when importing, unless you are importing a compatability module. | 24 | Generally we prefer to import specific function and class names from a module to keep code shorter and easier to understand. Sometimes this results in a name that is ambiguous, and in such cases we prefer to import the module instead. You should avoid using the "as" keyword when importing, unless you are importing a compatibility module. |
| 25 | 25 | ||
| 26 | Imports should be one line per module. We group import statements together using the standard python rules- system, 3rd party, local. | 26 | Imports should be one line per module. We group import statements together using the standard python rules- system, 3rd party, local. |
| 27 | 27 | ||
