🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 22:45:40 | PHP 8.1.34
📂
/ (Root)
/
opt
/
cloudlinux
/
venv
/
lib
/
python3.11
/
site-packages
/
prospector
📍 /opt/cloudlinux/venv/lib/python3.11/site-packages/prospector
🔄 Refresh
✏️
Editing: compat.py
Read Only
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
💾 Save Changes
❌ Cancel