Skip to content

Commit e901434

Browse files
committed
Fix uri for diagnostics in JB client
1 parent 737973d commit e901434

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/serena/jetbrains/jetbrains_plugin_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ def run_inspections(
689689
request_data["startLine"] = start_line
690690
if end_line is not None:
691691
request_data["endLine"] = end_line
692-
return cast(jb.RunInspectionsResponse, self._make_request("POST", "/runInspections", request_data))
692+
return cast(jb.RunInspectionsResponse, self._make_request("POST", "/runInspectionsOnFile", request_data))
693693

694694
def list_inspections(
695695
self,

0 commit comments

Comments
 (0)