Skip to content

Commit 518517d

Browse files
committed
Arreglando comentarios revisión
1 parent 526a3f2 commit 518517d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/format_differences.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939
"``[^`]+``",
4040
"`[^`]+`__",
4141
"`[^`]+`_",
42-
"\*\*[^\*]+\*\*", # bold text between **
43-
"\*[^\*]+\*", # italic text between *
42+
r"\*\*[^\*]+\*\*", # bold text between **
43+
r"\*[^\*]+\*", # italic text between *
4444
]
4545

4646
_exps = [re.compile(e) for e in _patterns]
@@ -86,7 +86,7 @@ def ind(level=0):
8686
else:
8787
files = [i for i in PO_DIR.glob("**/**/*.po") if not i.is_relative_to(VENV_DIR)]
8888

89-
for i, pofilename in enumerate(files):
89+
for pofilename in files:
9090
print(f"\n> Processing {pofilename}")
9191
po = polib.pofile(pofilename)
9292

0 commit comments

Comments
 (0)