Skip to content

Commit

Permalink
Merge pull request #22 from caspervdw/travis
Browse files Browse the repository at this point in the history
  • Loading branch information
caspervdw committed Aug 13, 2019
2 parents e407242 + 4be6c32 commit f451422
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ install:
- python setup.py build_ext --inplace
- pip install . --no-deps

script
script:
- if [[ "$PYTHON_VERSION" == "3.5" ]];
then pytest;
else pytest --doctest-modules;
fi
fi;
4 changes: 2 additions & 2 deletions pygeos/constructive.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def buffer(
join_style="round",
mitre_limit=5.0,
single_sided=False,
**kwargs,
**kwargs
):
"""
Computes the buffer of a geometry for positive and negative buffer radius.
Expand Down Expand Up @@ -159,7 +159,7 @@ def buffer(
np.intc(join_style),
mitre_limit,
np.bool(single_sided),
**kwargs,
**kwargs
)


Expand Down

0 comments on commit f451422

Please sign in to comment.