dx2102 commited on
Commit
b6eb186
1 Parent(s): 0e3f94d

Update server.py

Browse files
Files changed (1) hide show
  1. server.py +1 -1
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(1000000)
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')