File size: 123 Bytes
c293f7c
 
 
 
 
1
2
3
4
5
6
import ast
with open('backend/main_clean.py', encoding='utf-8') as f:
    src = f.read()
ast.parse(src)
print('Syntax OK')