From d21e47a481eec07abc4809d9a78b72a87d36fcaa Mon Sep 17 00:00:00 2001 From: Brendan Date: Fri, 11 Aug 2023 14:56:51 +0200 Subject: [PATCH] Added small docstring to 'create_folder' --- hydromt/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hydromt/utils.py b/hydromt/utils.py index 451a34893..2ae41a01c 100644 --- a/hydromt/utils.py +++ b/hydromt/utils.py @@ -38,6 +38,7 @@ def partition_dictionaries(left, right): def create_folder(path): + """Create a folder if there is none""" if not os.path.exists(path): os.makedirs(path)