We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a5904f7 + eb6d27a commit 7d482a0Copy full SHA for 7d482a0
1 file changed
packages/gooddata-sdk/src/gooddata_sdk/utils.py
@@ -166,8 +166,7 @@ def get_sorted_yaml_files(folder: Path) -> list[Path]:
166
167
168
def create_directory(path: Path) -> None:
169
- if not os.path.exists(path):
170
- os.makedirs(path)
+ os.makedirs(path, exist_ok=True)
171
172
173
def recreate_directory(path: Path) -> None:
0 commit comments