/usr/share/cagefs-skeleton/opt/cloudlinux/venv/lib/python3.11/site-packages/prospector
from pathlib import Path def is_relative_to(relpath: Path, otherpath: Path) -> bool: # is_relative_to was only added to Path in Python 3.9 if hasattr(relpath, "is_relative_to"): return relpath.is_relative_to(otherpath) try: relpath.relative_to(otherpath) except ValueError: return False else: return True
.
Edit
..
Edit
__init__.py
Edit
__main__.py
Edit
__pycache__
Edit
autodetect.py
Edit
blender.py
Edit
blender_combinations.yaml
Edit
compat.py
Edit
config
Edit
encoding.py
Edit
exceptions.py
Edit
finder.py
Edit
formatters
Edit
message.py
Edit
pathutils.py
Edit
postfilter.py
Edit
profiles
Edit
run.py
Edit
suppression.py
Edit
tools
Edit