Skip to content

Commit 1c71ea9

Browse files
committed
Fix lint
1 parent e096abc commit 1c71ea9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fluent/syntax/parser.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ def get_comment(self, ps):
190190

191191
while True:
192192
i = -1
193-
while ps.current_char == '#' and (i < (2 if level == -1 else level)):
193+
while ps.current_char == '#' \
194+
and (i < (2 if level == -1 else level)):
194195
ps.next()
195196
i += 1
196197

0 commit comments

Comments
 (0)