mirror of
https://github.com/codestable/CodeStable.git
synced 2026-09-19 09:03:09 +08:00
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")
|