-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1451 from LLkaia/update/clarify_desc
- Loading branch information
Showing
2 changed files
with
51 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Check Your Code Against the Following Points | ||
|
||
1. If the function definition line is too long, place each parameter on a new line. | ||
|
||
**Good example:** | ||
```python | ||
def long_function_name( | ||
var_one, | ||
var_two, | ||
var_three, | ||
var_four | ||
) -> None: | ||
``` | ||
|
||
**Bad example:** | ||
```python | ||
def long_function_name(var_one, var_two, | ||
var_three,var_four) -> None: | ||
``` | ||
|
||
2. Only use absolute imports. | ||
|
||
**Good example:** | ||
```python | ||
from app.module import Component | ||
``` | ||
|
||
**Bad example:** | ||
```python | ||
from .module import Component | ||
``` |