diff options
| author | 2021-02-06 16:51:35 -0500 | |
|---|---|---|
| committer | 2021-02-06 16:51:35 -0500 | |
| commit | 90eeeb046b392c1b770c44b766dd2ce78816b8bb (patch) | |
| tree | e5da8eae7d9e1e18611b4d5276c8d2e8d2f5f221 | |
| parent | New example to emphasize the mapping functionality rather than filtering. (diff) | |
Removed extra blank line.
It added more vertical white space than was wanted.
Co-authored-by: Gustav Odinger <[email protected]>
| -rw-r--r-- | bot/resources/tags/dictcomps.md | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bot/resources/tags/dictcomps.md b/bot/resources/tags/dictcomps.md index c9f9e62f7..6c8018761 100644 --- a/bot/resources/tags/dictcomps.md +++ b/bot/resources/tags/dictcomps.md @@ -11,5 +11,4 @@ One can use a dict comp to change an existing dictionary using its `items` metho >>> {key.upper(): value * 2 for key, value in first_dict.items()} {'I': 2, 'LOVE': 8, 'PYTHON': 12} ``` - For more information and examples, check out [PEP 274](https://www.python.org/dev/peps/pep-0274/) |