Wild imports typo

This commit is contained in:
Arthur Pastel 2020-01-10 12:43:16 +01:00 committed by GitHub
parent 83cac75f41
commit 30a6623ccd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
README.md vendored
View File

@ -2651,7 +2651,7 @@ NameError: name '_another_weird_name_func' is not defined
#### 💡 Explanation:
- It is often advisable to not use wildcard imports. The first obvious reason for this is, in wildcard imports, the names with a leading underscore get imported. This may lead to errors during runtime.
- It is often advisable to not use wildcard imports. The first obvious reason for this is, in wildcard imports, the names with a leading underscore don't get imported. This may lead to errors during runtime.
- Had we used `from ... import a, b, c` syntax, the above `NameError` wouldn't have occurred.
```py
>>> from module import some_weird_name_func_, _another_weird_name_func