Skip to content

Commit 591a63a

Browse files
authored
Merge pull request #78 from minos-framework/issue-75-avoid-pycache
#75 - Avoid `__pycache__` generation
2 parents 9f90dfa + 1e6fc0f commit 591a63a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

minos/cli/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
__email__ = "[email protected]"
33
__version__ = "0.1.3"
44

5+
import sys
6+
57
from .api import (
68
app,
79
main,
@@ -25,3 +27,5 @@
2527
Form,
2628
Question,
2729
)
30+
31+
sys.dont_write_bytecode = True

0 commit comments

Comments
 (0)