We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2630652 commit d9fce89Copy full SHA for d9fce89
tests_integration/lib/shared.py
@@ -96,6 +96,7 @@ def get_transparent_urls() -> set[str]:
96
# this is to protect against mistakes and typos, adjust if it ever becomes too strict
97
raise ValueError("All URLs in transparent_urls must start with https://")
98
99
+ # silence the PyCharm warning about using http instead of https
100
# noinspection HttpUrlsUsage
101
http_urls = {url.replace("https://", "http://", 1) for url in transparent_urls}
102
0 commit comments