1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-05-31 18:40:18 +02:00

Fixes code highlight

This commit is contained in:
Nikita Sobolev 2019-07-30 00:34:58 +03:00 committed by GitHub
parent e6eac17ef5
commit b0622a10ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
README.md vendored
View File

@ -1845,7 +1845,7 @@ x, y = (0, 1) if True else None, None
```
**Output:**
```
```py
>>> x, y # expected (0, 1)
((0, 1), None)
```