Skip to content

Commit

Permalink
Strip whitespace to pacify test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jablko authored Sep 6, 2023
1 parent ce22dc5 commit 53ad8dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion readme.org
Original file line number Diff line number Diff line change
Expand Up @@ -1147,7 +1147,7 @@ results = '#define MIRYOKU_LAYER_LIST \\\n'
for layer, name in layers_table:
stripped=layer.lstrip('U_')
results += 'MIRYOKU_X(' + ( stripped + ', ').ljust(width) + '"' + name + '") \\\n'
results = results.rstrip('\\\n')
results = results.rstrip(' \\\n')
return results
#+END_SRC

Expand All @@ -1162,6 +1162,7 @@ i = 0
for layer, name in layers_table:
results += '#define ' + ( layer + ' ').ljust(width) + str(i) + '\n'
i += 1
results = results.rstrip('\n')
return results
#+END_SRC

Expand Down

0 comments on commit 53ad8dc

Please sign in to comment.