diff --git a/grafana_api/api/pipelines.py b/grafana_api/api/pipelines.py index 180b415..5969a7a 100644 --- a/grafana_api/api/pipelines.py +++ b/grafana_api/api/pipelines.py @@ -25,7 +25,6 @@ def create_pipeline(self, name, pipeline_type, data, description=""): )) return response - def update_pipeline(self, id, name, data, description="", **kwargs): if type(id) != int or not id: raise ValueError("Pipeline id is invalid!") @@ -58,7 +57,6 @@ def list_pipelines(self, pipeline_type="", limit=100, page=0): )) return response - def get_pipeline(self, id, depends=False): if type(id) != int or not id: raise ValueError("Pipeline id is invalid!") @@ -73,4 +71,4 @@ def delete_pipeline(self, id): raise ValueError("Pipeline id is invalid!") response = self.api.DELETE(self.path + "/%d" % id) - return response \ No newline at end of file + return response