1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
From: YOKOTA Hiroshi <yokota.hgml@gmail.com>
Date: Sat, 30 Nov 2024 01:55:27 +0900
Subject: Revert "Add issue links"
Forwarded: not-needed
This reverts commit 0c86a7918fb186ee0aadd00d728d61defb3b2804.
---
src/calibre/ebooks/unihandecode/jadecoder.py | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/calibre/ebooks/unihandecode/jadecoder.py b/src/calibre/ebooks/unihandecode/jadecoder.py
index 6291c76..26257c0 100644
--- a/src/calibre/ebooks/unihandecode/jadecoder.py
+++ b/src/calibre/ebooks/unihandecode/jadecoder.py
@@ -33,7 +33,6 @@ from calibre.ebooks.unihandecode.unidecoder import Unidecoder
# pykakasi uses paths for its dictionaries rather than using the
# Traversable API of importlib.resources so we have to hack around it, sigh.
-# https://codeberg.org/miurahr/pykakasi/pulls/174
def dictdata(dbfile: str):
t = files('pykakasi')
q = t.joinpath('data').joinpath(dbfile)
@@ -71,7 +70,6 @@ class Jadecoder(Unidecoder):
# We have to use the deprecated API as the new API does not capitalize
# words. Sigh.
- # https://codeberg.org/miurahr/pykakasi/issues/172
with warnings.catch_warnings():
warnings.simplefilter("ignore")
self.kakasi = kakasi()
|