Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f4b5df7

Browse files
committed
Tweak style in lexer.py
1 parent fde5f18 commit f4b5df7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tools/cases_generator/lexer.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -206,13 +206,13 @@ def choice(*opts: str) -> str:
206206
kwds.append(VOLATILE)
207207
WHILE = "WHILE"
208208
kwds.append(WHILE)
209-
#An instruction in the DSL
209+
# An instruction in the DSL
210210
INST = "INST"
211211
kwds.append(INST)
212-
#A micro-op in the DSL
212+
# A micro-op in the DSL
213213
OP = "OP"
214214
kwds.append(OP)
215-
#A macro in the DSL
215+
# A macro in the DSL
216216
MACRO = "MACRO"
217217
kwds.append(MACRO)
218218
keywords = {name.lower(): name for name in kwds}

0 commit comments

Comments
 (0)