Potential fix for pull request finding

Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Igor Lins e Silva 2026-06-20 19:24:07 -03:00 committed by GitHub
parent 38253b1f5f
commit 73772cb707
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -216,6 +216,7 @@ def sqlite_read_uri(db_path: str) -> str:
"""
from urllib.request import pathname2url
db_path = os.fspath(db_path)
return f"file:{pathname2url(db_path)}?mode=ro"