From 68d5b759947f361c0ca0f29c3a25ba2afbf41d3d Mon Sep 17 00:00:00 2001 From: Wu Tingfeng Date: Sat, 28 Oct 2023 05:01:20 +0800 Subject: [PATCH] Improve clarity of absolute path --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8c7bac5b..9434d34b 100644 --- a/README.md +++ b/README.md @@ -186,7 +186,7 @@ If you want to use input data from your local filesystem, just use the `file://` ```python extract = tldextract.TLDExtract( - suffix_list_urls=["file://absolute/path/to/your/local/suffix/list/file"], + suffix_list_urls=["file://" + "/absolute/path/to/your/local/suffix/list/file"], cache_dir='/path/to/your/cache/', fallback_to_snapshot=False) ```