Remove unneeded exclusion

This commit is contained in:
Kovid Goyal 2025-01-27 11:12:08 +05:30
parent 82796bccd5
commit 024b9cc0fd
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 3 additions and 3 deletions

View File

@ -50,7 +50,6 @@ unfixable = ['PIE794', 'ISC001']
"manual/plugin_examples/*" = ['UP']
"setup/changelog.py" = ['ISC001']
"src/calibre/*" = ['UP031']
"src/calibre/devices/kobo/driver.py" = ['E116']
"src/calibre/ebooks/unihandecode/*codepoints.py" = ['E501']
"src/calibre/ebooks/metadata/sources/*" = ['UP']
"src/calibre/ebooks/metadata/sources/base.py" = ['RET501']

View File

@ -1487,8 +1487,9 @@ class KOBOTOUCH(KOBO):
SAGE_PRODUCT_ID = [0x4231]
TOUCH_PRODUCT_ID = [0x4163]
TOUCH2_PRODUCT_ID = [0x4224]
LIBRA_COLOR_PRODUCT_ID = [0x4237] # This is shared by Kobo Libra Color, Clara Color and Clara BW
# as well as tolino shine 5, shine color and vision color. Sigh.
# This product id is shared by Kobo Libra Color, Clara Color and Clara BW
# as well as tolino shine 5, shine color and vision color. Sigh.
LIBRA_COLOR_PRODUCT_ID = [0x4237]
# Kobo says the following will be used in future firmware (end 2024/2025)
CLARA_COLOR_PRODUCT_ID = [0x4238]
CLARA_BW_PRODUCT_ID = [0x4239]