Skip to content

Commit 0eff54a

Browse files
committed
Update src/generate_cheatsheet.py
1 parent aa4686b commit 0eff54a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/generate_cheatsheet.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def replace_shortcut_names(shortcut, system_mappings):
5959
try:
6060
processed_parts = []
6161
i = 0
62-
shortcut = re.sub(r"(\+|\>)\s*(\+|\>)", "\g<1>\g<2>", shortcut)
62+
shortcut = re.sub(r"(\+|\>)\s*(\+|\>)", r"\g<1>\g<2>", shortcut)
6363

6464
while i < len(shortcut):
6565
if shortcut[i] == "+":

0 commit comments

Comments
 (0)