1 diff --git a/lib/youseedee/__init__.py b/lib/youseedee/__init__.py
2 index 8db9c5f..9ad6618 100644
3 --- a/lib/youseedee/__init__.py
4 +++ b/lib/youseedee/__init__.py
5 @@ -38,12 +38,7 @@ UCD_URL = "https://unicode.org/Public/UCD/latest/ucd/UCD.zip"
8 """Return the directory where Unicode data is stored"""
9 - ucddir = expanduser("~/.youseedee")
12 - except FileExistsError:
19 @@ -65,14 +60,6 @@ def up_to_date():
22 """Ensure the Unicode data files are downloaded and up to date, and download them if not"""
23 - if not os.path.isfile(os.path.join(ucd_dir(), "UnicodeData.txt")):
25 - if not up_to_date():
26 - # Remove the zip if it exists
27 - zip_path = os.path.join(ucd_dir(), "UCD.zip")
28 - if os.path.isfile(zip_path):