thewellermangroup commited on
Commit
df316c7
·
1 Parent(s): 92aac2f

Update functions.py

Browse files
Files changed (1) hide show
  1. functions.py +2 -3
functions.py CHANGED
@@ -1,7 +1,6 @@
1
  f = open("FUNCTIONS.txt",'r',encoding="utf-8")
2
  functions0 = f.read()
3
  f.close()
4
- print(functions0)
5
 
6
 
7
  functions1 = functions0.split('\nfunction ')
@@ -29,10 +28,10 @@ for fun in functions1:
29
 
30
  print(num)
31
 
32
- f = open("FUNCTIONS_BACKEND.txt",'w',encoding="utf-8")
33
  f.write(BACKEND)
34
  f.close()
35
 
36
- f = open("FUNCTIONS_FRONTEND.txt",'w',encoding="utf-8")
37
  f.write(FRONTEND)
38
  f.close()
 
1
  f = open("FUNCTIONS.txt",'r',encoding="utf-8")
2
  functions0 = f.read()
3
  f.close()
 
4
 
5
 
6
  functions1 = functions0.split('\nfunction ')
 
28
 
29
  print(num)
30
 
31
+ f = open("./FUNCTIONS_BACKEND.txt",'w',encoding="utf-8")
32
  f.write(BACKEND)
33
  f.close()
34
 
35
+ f = open("./FUNCTIONS_FRONTEND.txt",'w',encoding="utf-8")
36
  f.write(FRONTEND)
37
  f.close()