druid-io / pydruid

A Python connector for Druid
Other
506 stars 194 forks source link

Fixed typo in docstring for Bound class #182

Closed wjdecorte closed 4 years ago

wjdecorte commented 4 years ago

Updated docstring for Bound class in filters.py to fix incorrect variable type. Changed from bool to str.

mistercrunch commented 4 years ago

Let's copy what's in the Druid docs:

Specifies the sorting order to use when comparing values against the bound. Can be one of the following values: "lexicographic", "alphanumeric", "numeric", "strlen", "version". See Sorting Orders for more details.
wjdecorte commented 4 years ago

@mistercrunch Added the additional requested information to the docstring. Thanks for the suggestion!