Skip to content

Commit

Permalink
Please lint
Browse files Browse the repository at this point in the history
  • Loading branch information
deeplook committed Sep 7, 2020
1 parent fd10b8b commit 392dc9c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions xyzspaces/spaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -717,13 +717,13 @@ def features_in_tile(
:param params: A dict to represent additional filter on features to be searched.
Examples:
- ``params={"p.name": "foo"}``
- ``params={"p.name": "foo"}``
returns all features with a value of property ``name`` equal to ``foo``.
- ``params={"p.name!": "foo"}``
returns all features with a value of property ``name`` not qual to ``foo``.
- ``params={"p.count=gte": "10"}``
returns all features with a value of property ``count`` greater than or equal
to ``10``.
returns all features with a value of property ``count`` greater than or
equal to ``10``.
- ``params={"p.count=lte": "10"}``
returns all features with a value of property ``count`` less than or equal
to ``10``.
Expand All @@ -732,7 +732,8 @@ def features_in_tile(
- ``params={"p.count=lt": "10"}``
returns all features with a value of property ``count`` less than ``10``.
- ``params={"p.name=cs": "bar"}``
returns all features with a value of property ``name`` which contains ``bar``.
returns all features with a value of property ``name`` which contains
``bar``.
:param selection: A list, only these properties will be returned in features
result list.
:param skip_cache: If set to ``True`` the response is not returned from cache.
Expand Down

0 comments on commit 392dc9c

Please sign in to comment.