Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Fix order of input parameters of delete_series in documentation #373

Merged
merged 1 commit into from
Oct 13, 2016
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions influxdb/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -662,13 +662,13 @@ def delete_series(self, database=None, measurement=None, tags=None):
"""Delete series from a database. Series can be filtered by
measurement and tags.

:param measurement: Delete all series from a measurement
:type id: string
:param tags: Delete all series that match given tags
:type id: dict
:param database: the database from which the series should be
deleted, defaults to client's current database
:type database: str
:param measurement: Delete all series from a measurement
:type id: str
:param tags: Delete all series that match given tags
:type id: dict
"""
database = database or self._database
query_str = 'DROP SERIES'
Expand Down