diff --git a/python/helpers/python-skeletons/pathlib.py b/python/helpers/python-skeletons/pathlib.py index 7ecc3e50ad9d..7159886d81ac 100644 --- a/python/helpers/python-skeletons/pathlib.py +++ b/python/helpers/python-skeletons/pathlib.py @@ -291,10 +291,11 @@ class Path(pathlib.PurePath): """ pass - def mkdir(self, mode=0o777, parents=False): + def mkdir(self, mode=0o777, parents=False, exist_ok=False): """ :type mode: int :type parents: bool + :type exist_ok: bool :rtype: None """ pass