From 0f6e95f011e5db22cc94c55ae060341efbd9aeae Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Fri, 18 Aug 2023 03:04:20 +0200 Subject: [PATCH] Correct `Path` example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0254950..761a144 100644 --- a/README.md +++ b/README.md @@ -202,7 +202,7 @@ class Config: log_dir: Path def create_log_dir(self) -> None: - log_dir.mkdir(parents=True) + self.log_dir.mkdir(parents=True) ``` ### Dates and Times