Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
·
e99e9b1
1
Parent(s):
1049e96
Add encrypted pyc files with Git LFS
Browse files- .gitattributes +2 -0
- __lib__/app.py +0 -0
- __lib__/app.pyc +3 -0
- __lib__/i18n/en.pyc +0 -0
- __lib__/nfsw.pyc +0 -0
- __lib__/util.pyc +0 -0
- app.py +1 -3
.gitattributes
CHANGED
|
@@ -37,3 +37,5 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 37 |
*.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 39 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
| 37 |
*.png filter=lfs diff=lfs merge=lfs -text
|
| 38 |
*.jpeg filter=lfs diff=lfs merge=lfs -text
|
| 39 |
*.webp filter=lfs diff=lfs merge=lfs -text
|
| 40 |
+
*.pyc filter=lfs diff=lfs merge=lfs -text
|
| 41 |
+
**/*.pyc filter=lfs diff=lfs merge=lfs -text
|
__lib__/app.py
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|
__lib__/app.pyc
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5992673ffb1bcbbdb516b6215b1760e1e2a92c806718465eca98a1908937910c
|
| 3 |
+
size 107054
|
__lib__/i18n/en.pyc
CHANGED
|
Binary files a/__lib__/i18n/en.pyc and b/__lib__/i18n/en.pyc differ
|
|
|
__lib__/nfsw.pyc
CHANGED
|
Binary files a/__lib__/nfsw.pyc and b/__lib__/nfsw.pyc differ
|
|
|
__lib__/util.pyc
CHANGED
|
Binary files a/__lib__/util.pyc and b/__lib__/util.pyc differ
|
|
|
app.py
CHANGED
|
@@ -27,9 +27,7 @@ try:
|
|
| 27 |
# Load compiled modules
|
| 28 |
util_module = load_pyc_module("util", lib_dir / "util.pyc")
|
| 29 |
nfsw_module = load_pyc_module("nfsw", lib_dir / "nfsw.pyc")
|
| 30 |
-
|
| 31 |
-
# Import app module (source file)
|
| 32 |
-
import app as app_module
|
| 33 |
|
| 34 |
# Create and launch app
|
| 35 |
app = app_module.create_app()
|
|
|
|
| 27 |
# Load compiled modules
|
| 28 |
util_module = load_pyc_module("util", lib_dir / "util.pyc")
|
| 29 |
nfsw_module = load_pyc_module("nfsw", lib_dir / "nfsw.pyc")
|
| 30 |
+
app_module = load_pyc_module("app", lib_dir / "app.pyc")
|
|
|
|
|
|
|
| 31 |
|
| 32 |
# Create and launch app
|
| 33 |
app = app_module.create_app()
|