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 ed0823e commit f30920fCopy full SHA for f30920f
1 file changed
layercake/formatters/fortran.py
@@ -126,5 +126,5 @@ def fortran_line_splitter(line, line_length=80):
126
line_out.append(f'{line_chunks[0]}&')
127
for chunk in line_chunks[1:-1]:
128
line_out.append(f'\t&{chunk}&')
129
- line_out.append(f'\t{line_chunks[-1]}')
+ line_out.append(f'\t&{line_chunks[-1]}')
130
return "\n".join(line_out)
0 commit comments