From 519aff8a65842ca30f20aea350782ce40407802e Mon Sep 17 00:00:00 2001 From: speedcell4 Date: Thu, 20 Jun 2024 18:21:02 +0900 Subject: [PATCH] Feat: Update systerm data_dir --- torchglyph/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/torchglyph/__init__.py b/torchglyph/__init__.py index 5c45fc9..5111234 100644 --- a/torchglyph/__init__.py +++ b/torchglyph/__init__.py @@ -5,7 +5,7 @@ from matplotlib import pyplot as plt -data_dir = (Path.home() / '.torchglyph').resolve() +data_dir = (Path.home() / '.cache' / 'torchglyph').resolve() if not data_dir.exists(): data_dir.mkdir(parents=True, exist_ok=True)