We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0bc9586 commit f473b14Copy full SHA for f473b14
robotidy/transformers/NormalizeNewLines.py
@@ -72,7 +72,7 @@ def visit_Statement(self, node): # noqa
72
tokens = []
73
for line in node.lines:
74
if line[-1].type == Token.EOL:
75
- line[-1].value = '\n'
+ line[-1].value = '\n' # TODO: use global formatting in the future
76
tokens.extend(line)
77
node.tokens = tokens
78
return node
0 commit comments