mirror of
https://github.com/codestable/CodeStable.git
synced 2026-09-19 09:03:09 +08:00
cd7e1d33f0
* refactor: package codestable plugin distribution * docs: restore README workflow details * refactor: remove browser bridge from distribution --------- Co-authored-by: QA Bot <qa@example.invalid>
9 lines
144 B
Python
9 lines
144 B
Python
from __future__ import annotations
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
sys.dont_write_bytecode = True
|
|
os.environ.setdefault("PYTHONDONTWRITEBYTECODE", "1")
|