From d83c1b65ceab5cf1223c41649a25a142755fe703 Mon Sep 17 00:00:00 2001 From: Bertrand Bonnefoy-Claudet Date: Sat, 9 May 2020 12:56:13 +0200 Subject: [PATCH] Refine Python version constraint in readme example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7374d05c..98aac03b 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ load_dotenv() load_dotenv(verbose=True) # OR, explicitly providing path to '.env' -from pathlib import Path # python3 only +from pathlib import Path # Python 3.6+ only env_path = Path('.') / '.env' load_dotenv(dotenv_path=env_path) ```