Spaces:
Sleeping
Sleeping
Commit
·
75164a0
1
Parent(s):
412b4c3
Update functions.py
Browse files- functions.py +7 -1
functions.py
CHANGED
@@ -34,4 +34,10 @@ f.close()
|
|
34 |
|
35 |
f = open("./FUNCTIONS_FRONTEND.txt",'w',encoding="utf-8")
|
36 |
f.write(FRONTEND)
|
37 |
-
f.close()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
|
35 |
f = open("./FUNCTIONS_FRONTEND.txt",'w',encoding="utf-8")
|
36 |
f.write(FRONTEND)
|
37 |
+
f.close()
|
38 |
+
|
39 |
+
|
40 |
+
f = open("FUNCTIONS_BACKEND.txt",'r',encoding="utf-8")
|
41 |
+
backendf = f.read()
|
42 |
+
f.close()
|
43 |
+
print(backendf)
|