We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e48cf2 commit addf32fCopy full SHA for addf32f
src/python_inspector/settings.py
@@ -58,4 +58,4 @@ def validate_index_url(cls, value):
58
def create_cache_directory(cache_dir):
59
cache_dir = Path(cache_dir).expanduser().resolve().absolute()
60
if not cache_dir.exists():
61
- cache_dir.mkdir(exist_ok=True)
+ cache_dir.mkdir(parents=True, exist_ok=True)
0 commit comments