This commit is contained in:
Sebastian Krzyszkowiak 2017-09-01 23:05:03 +01:00 committed by GitHub
parent 424b240acc
commit 8cf1148a41
1 changed files with 1 additions and 1 deletions

2
README.md vendored
View File

@ -804,7 +804,7 @@ def some_func(default_arg=[]):
(['some_string', 'some_string'],)
```
- A common practice to avoid bugs due to mutable arguments is to assign `None` as the default value and later check if any value is passed to the function corresponding to that argument. Examlple:
- A common practice to avoid bugs due to mutable arguments is to assign `None` as the default value and later check if any value is passed to the function corresponding to that argument. Example:
```py
def some_func(default_arg=None):