Merge pull request #16169 from RasmusWL/mad-remoteflowsource

Python: Fix `RemoteFlowSourceFromCsv`
This commit is contained in:
Rasmus Wriedt Larsen
2024-04-10 13:06:42 +02:00
committed by GitHub

View File

@@ -22,7 +22,7 @@ private import semmle.python.dataflow.new.FlowSummary
/**
* A remote flow source originating from a CSV source row.
*/
private class RemoteFlowSourceFromCsv extends RemoteFlowSource {
private class RemoteFlowSourceFromCsv extends RemoteFlowSource::Range {
RemoteFlowSourceFromCsv() { this = ModelOutput::getASourceNode("remote").asSource() }
override string getSourceType() { result = "Remote flow (from model)" }