Skip to content

Commit 69951f2

Browse files
committed
Remove zero_four_style from ast.Comment
1 parent 7b80850 commit 69951f2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

fluent/syntax/ast.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -285,10 +285,7 @@ def __init__(self, content=None, **kwargs):
285285

286286
class Comment(BaseComment):
287287
def __init__(self, content=None, **kwargs):
288-
zero_four_style = kwargs.pop("zero_four_style", False)
289288
super(Comment, self).__init__(content, **kwargs)
290-
if zero_four_style:
291-
self.zero_four_style = True
292289

293290

294291
class GroupComment(BaseComment):

0 commit comments

Comments
 (0)