diff options
author | cyfraeviolae <cyfraeviolae> | 2024-04-03 03:17:55 -0400 |
---|---|---|
committer | cyfraeviolae <cyfraeviolae> | 2024-04-03 03:17:55 -0400 |
commit | 12cf076118570eebbff08c6b3090e0d4798447a1 (patch) | |
tree | 3ba25e17e3c3a5e82316558ba3864b955919ff72 /venv/lib/python3.11/site-packages/litestar/utils/path.py | |
parent | c45662ff3923b34614ddcc8feb9195541166dcc5 (diff) |
no venv
Diffstat (limited to 'venv/lib/python3.11/site-packages/litestar/utils/path.py')
-rw-r--r-- | venv/lib/python3.11/site-packages/litestar/utils/path.py | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/venv/lib/python3.11/site-packages/litestar/utils/path.py b/venv/lib/python3.11/site-packages/litestar/utils/path.py deleted file mode 100644 index 76b43af..0000000 --- a/venv/lib/python3.11/site-packages/litestar/utils/path.py +++ /dev/null @@ -1,35 +0,0 @@ -from __future__ import annotations - -import re -from typing import Iterable - -__all__ = ("join_paths", "normalize_path") - - -multi_slash_pattern = re.compile("//+") - - -def normalize_path(path: str) -> str: - """Normalize a given path by ensuring it starts with a slash and does not end with a slash. - - Args: - path: Path string - - Returns: - Path string - """ - path = path.strip("/") - path = f"/{path}" - return multi_slash_pattern.sub("/", path) - - -def join_paths(paths: Iterable[str]) -> str: - """Normalize and joins path fragments. - - Args: - paths: An iterable of path fragments. - - Returns: - A normalized joined path string. - """ - return normalize_path("/".join(paths)) |