feat(cache): open cache dir on no options

This commit is contained in:
Benex254
2024-08-07 21:14:57 +03:00
parent 7011489ce5
commit 91b54dfcb9

View File

@@ -33,3 +33,7 @@ def cache(clean, path, size):
fp = os.path.join(dirpath, f)
total_size += os.path.getsize(fp)
print("Total Size: ", sizeof_fmt(total_size))
else:
import click
click.launch(APP_CACHE_DIR)