Files
Borealis-Github-Replica/tmp_parse.py

5 lines
114 B
Python

import ast, sys
with open('Data/Server/server.py','r',encoding='utf-8') as f:
ast.parse(f.read())
print('OK')