mirror of
https://github.com/shouptech/synthale.git
synced 2026-02-03 15:39:45 +00:00
Fix W605 invalid escape sequence.
This commit is contained in:
parent
e14ac0249c
commit
fc535c5b40
1 changed files with 2 additions and 2 deletions
|
|
@ -42,10 +42,10 @@ def test_strong():
|
||||||
('testing',),
|
('testing',),
|
||||||
('testin|g',),
|
('testin|g',),
|
||||||
),
|
),
|
||||||
('| pipe\|test |\n'
|
('| pipe\\|test |\n'
|
||||||
'| ---------- |\n'
|
'| ---------- |\n'
|
||||||
'| testing |\n'
|
'| testing |\n'
|
||||||
'| testin\|g |')
|
'| testin\\|g |')
|
||||||
)
|
)
|
||||||
))
|
))
|
||||||
def test_table(headers, rows, expected):
|
def test_table(headers, rows, expected):
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue