Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
Signed-off-by: yihong0618 <[email protected]>
  • Loading branch information
yihong0618 committed Jul 8, 2024
1 parent 2468a17 commit b07ef79
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
1 change: 1 addition & 0 deletions epubhv/epubhv.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""
Follow these steps to change epub books to vertical or horizontal.
"""

import logging
import os
import shutil
Expand Down
1 change: 1 addition & 0 deletions epubhv/yomituki.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
I made some change
"""

# coding: utf-8
import re
from itertools import groupby
Expand Down
20 changes: 16 additions & 4 deletions tests/test_epubhv.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,10 @@ def test_punctuation():
"hant",
)
res = opencc.OpenCC("s2t").convert(res) # type: ignore
assert res == """「我最贊成羅素先生的一句話:『須知參差多態,乃是幸福的本源。』大多數的參差多態都是敏於思索的人創造出來的。」"""
assert (
res
== """「我最贊成羅素先生的一句話:『須知參差多態,乃是幸福的本源。』大多數的參差多態都是敏於思索的人創造出來的。」"""
)

res = punctuation.convert(
"﹁我最贊成羅素先生的一句話:﹃須知參差多態,乃是幸福的本源。﹄大多數的參差多態都是敏於思索的人創造出來的。﹂",
Expand All @@ -122,7 +125,10 @@ def test_punctuation():
"hans",
)
res = opencc.OpenCC("t2s").convert(res) # type: ignore
assert res == """“我最赞成罗素先生的一句话:‘须知参差多态,乃是幸福的本源。’大多数的参差多态都是敏于思索的人创造出来的。”"""
assert (
res
== """“我最赞成罗素先生的一句话:‘须知参差多态,乃是幸福的本源。’大多数的参差多态都是敏于思索的人创造出来的。”"""
)

res = punctuation.convert(
"“我最赞成罗素先生的一句话:‘须知参差多态,乃是幸福的本源。’大多数的参差多态都是敏于思索的人创造出来的。”",
Expand All @@ -131,7 +137,10 @@ def test_punctuation():
"hant",
)
res = opencc.OpenCC("s2t").convert(res) # type: ignore
assert res == """「我最贊成羅素先生的一句話:『須知參差多態,乃是幸福的本源。』大多數的參差多態都是敏於思索的人創造出來的。」"""
assert (
res
== """「我最贊成羅素先生的一句話:『須知參差多態,乃是幸福的本源。』大多數的參差多態都是敏於思索的人創造出來的。」"""
)

res = punctuation.convert(
"「我最贊成羅素先生的一句話:『須知參差多態,乃是幸福的本源。』大多數的參差多態都是敏於思索的人創造出來的。」",
Expand All @@ -140,4 +149,7 @@ def test_punctuation():
"hans",
)
res = opencc.OpenCC("t2s").convert(res) # type: ignore
assert res == """『我最赞成罗素先生的一句话:「须知参差多态,乃是幸福的本源。」大多数的参差多态都是敏于思索的人创造出来的。』"""
assert (
res
== """『我最赞成罗素先生的一句话:「须知参差多态,乃是幸福的本源。」大多数的参差多态都是敏于思索的人创造出来的。』"""
)

0 comments on commit b07ef79

Please sign in to comment.