Skip to content

Commit d3069e8

Browse files
authored
Merge pull request influxdata#373 from pvnguyen/patch-1
Fix order of input parameters of delete_series in documentation
2 parents d278446 + 499bcde commit d3069e8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

influxdb/client.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -662,13 +662,13 @@ def delete_series(self, database=None, measurement=None, tags=None):
662662
"""Delete series from a database. Series can be filtered by
663663
measurement and tags.
664664
665-
:param measurement: Delete all series from a measurement
666-
:type id: string
667-
:param tags: Delete all series that match given tags
668-
:type id: dict
669665
:param database: the database from which the series should be
670666
deleted, defaults to client's current database
671667
:type database: str
668+
:param measurement: Delete all series from a measurement
669+
:type id: str
670+
:param tags: Delete all series that match given tags
671+
:type id: dict
672672
"""
673673
database = database or self._database
674674
query_str = 'DROP SERIES'

0 commit comments

Comments
 (0)