Add fastapi code
This commit is contained in:
7
venv/lib/python3.11/site-packages/setuptools/_path.py
Normal file
7
venv/lib/python3.11/site-packages/setuptools/_path.py
Normal file
@ -0,0 +1,7 @@
|
||||
import os
|
||||
|
||||
|
||||
def ensure_directory(path):
|
||||
"""Ensure that the parent directory of `path` exists"""
|
||||
dirname = os.path.dirname(path)
|
||||
os.makedirs(dirname, exist_ok=True)
|
||||
Reference in New Issue
Block a user