thewellermangroup
commited on
Commit
•
b6e63ce
1
Parent(s):
21b89ef
Update app.py
Browse files
app.py
CHANGED
@@ -29,10 +29,10 @@ def password(passwordIn):
|
|
29 |
'ACCESS': access,
|
30 |
}
|
31 |
f = open('/FUNCTIONS/FUNCTIONS_BACKEND.txt', 'r', encoding='utf-8')
|
32 |
-
FUNCTIONS_BACKEND = eval(f.read())
|
33 |
f.close()
|
34 |
f = open('/LINKS/LINKS.txt', 'r', encoding='utf-8')
|
35 |
-
LINKS = eval(f.read())
|
36 |
f.close()
|
37 |
f = open('/RIGHT_CLICK/RIGHT_CLICK.txt', 'r', encoding='utf-8')
|
38 |
RIGHT_CLICK = f.read()
|
|
|
29 |
'ACCESS': access,
|
30 |
}
|
31 |
f = open('/FUNCTIONS/FUNCTIONS_BACKEND.txt', 'r', encoding='utf-8')
|
32 |
+
FUNCTIONS_BACKEND = eval('{'+f.read()+'}')
|
33 |
f.close()
|
34 |
f = open('/LINKS/LINKS.txt', 'r', encoding='utf-8')
|
35 |
+
LINKS = eval('{'+f.read()+'}')
|
36 |
f.close()
|
37 |
f = open('/RIGHT_CLICK/RIGHT_CLICK.txt', 'r', encoding='utf-8')
|
38 |
RIGHT_CLICK = f.read()
|