Spaces:
Sleeping
Sleeping
Update server.py
Browse files
server.py
CHANGED
@@ -29,7 +29,7 @@ class Decl:
|
|
29 |
def parse_exported_file():
|
30 |
decls = []
|
31 |
print('Reading exported.txt')
|
32 |
-
lines = open('exported.txt', 'r').read(
|
33 |
print('Splitting exported.txt')
|
34 |
lines = lines.split('----ast----\n')[1:]
|
35 |
print('Parsing exported.txt')
|
|
|
29 |
def parse_exported_file():
|
30 |
decls = []
|
31 |
print('Reading exported.txt')
|
32 |
+
lines = open('exported.txt', 'r').read()
|
33 |
print('Splitting exported.txt')
|
34 |
lines = lines.split('----ast----\n')[1:]
|
35 |
print('Parsing exported.txt')
|