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 1ceafce commit 973bb0fCopy full SHA for 973bb0f
src/datapilot/core/knowledge/cli.py
@@ -67,7 +67,7 @@ def handle_knowledge_base(self, public_id):
67
req = Request(url, headers=headers)
68
69
try:
70
- with urlopen(req, timeout=30) as response:
+ with urlopen(req, timeout=30) as response: # noqa: S310 - URL scheme already validated above
71
data = response.read()
72
self.send_response(200)
73
self.send_header("Content-Type", "application/json")
0 commit comments