Skip to content

Commit 6e368ed

Browse files
committed
Use more realistic example output
1 parent 264a62e commit 6e368ed

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ the minified code may only run with Python 3.12.
2828
Will be minified to:
2929

3030
```python
31-
def a():
32-
raise ValueError
31+
def a():raise ValueError
3332
```
3433

3534
The raise statement automatically instantiates classes derived from Exception, so the brackets are not required.
@@ -43,7 +42,7 @@ the minified code may only run with Python 3.12.
4342

4443
Will be minified to:
4544
```python
46-
SECONDS_IN_A_DAY = 86400
45+
SECONDS_IN_A_DAY=86400
4746
```
4847

4948
### Changed

0 commit comments

Comments
 (0)