Skip to content

Commit 369f9ca

Browse files
authored
Fix missing opt level in uv Python storage example (#58)
1 parent 5f9fa2a commit 369f9ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/guides/storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ The first step is to create the virtual environment using the usual workflow.
5757

5858
# optionally, to reduce the import times, precompile all
5959
# python modules to bytecode before creating the squashfs image
60-
python -m compileall -j 8 -o 1 -o 2 .venv/lib/python3.12/site-packages
60+
python -m compileall -j 8 -o 0 -o 1 -o 2 .venv/lib/python3.12/site-packages
6161
```
6262

6363
=== "venv"

0 commit comments

Comments
 (0)