Browse Source

Fixed faulty import.

Taddeus Kroes 14 năm trước cách đây
mục cha
commit
f519a19f86
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/parser.py

+ 1 - 1
src/parser.py

@@ -1,7 +1,7 @@
 import ply.lex as lex
 import ply.yacc as yacc
 
-from utils import Statement as S, Block
+from statement import Statement as S, Block
 
 # Global statements administration
 statements = []