From 3044bf6fd3fe5a186cbdc3f2831d700dc25b449d Mon Sep 17 00:00:00 2001 From: Tomaz Solc Date: Sun, 20 Dec 2020 12:41:26 +0100 Subject: More mass replace '' -> None See 35295352. --- unidecode/x1d5.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'unidecode/x1d5.py') diff --git a/unidecode/x1d5.py b/unidecode/x1d5.py index 6ec605b..40e6935 100644 --- a/unidecode/x1d5.py +++ b/unidecode/x1d5.py @@ -5,13 +5,13 @@ data = ( 'z', # 0x03 'A', # 0x04 'B', # 0x05 -'', # 0x06 +None, # 0x06 'D', # 0x07 'E', # 0x08 'F', # 0x09 'G', # 0x0a -'', # 0x0b -'', # 0x0c +None, # 0x0b +None, # 0x0c 'J', # 0x0d 'K', # 0x0e 'L', # 0x0f @@ -20,7 +20,7 @@ data = ( 'O', # 0x12 'P', # 0x13 'Q', # 0x14 -'', # 0x15 +None, # 0x15 'S', # 0x16 'T', # 0x17 'U', # 0x18 @@ -28,7 +28,7 @@ data = ( 'W', # 0x1a 'X', # 0x1b 'Y', # 0x1c -'', # 0x1d +None, # 0x1d 'a', # 0x1e 'b', # 0x1f 'c', # 0x20 @@ -57,22 +57,22 @@ data = ( 'z', # 0x37 'A', # 0x38 'B', # 0x39 -'', # 0x3a +None, # 0x3a 'D', # 0x3b 'E', # 0x3c 'F', # 0x3d 'G', # 0x3e -'', # 0x3f +None, # 0x3f 'I', # 0x40 'J', # 0x41 'K', # 0x42 'L', # 0x43 'M', # 0x44 -'', # 0x45 +None, # 0x45 'O', # 0x46 -'', # 0x47 -'', # 0x48 -'', # 0x49 +None, # 0x47 +None, # 0x48 +None, # 0x49 'S', # 0x4a 'T', # 0x4b 'U', # 0x4c @@ -80,7 +80,7 @@ data = ( 'W', # 0x4e 'X', # 0x4f 'Y', # 0x50 -'', # 0x51 +None, # 0x51 'a', # 0x52 'b', # 0x53 'c', # 0x54 -- cgit v1.2.1