Skip to content

Commit

Permalink
run pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
philipc2 committed Sep 10, 2024
1 parent a7eb415 commit 0ee5140
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion envs/py3.10-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pyproject2conda
# with the following command:
#
# $ pyproject2conda project --overwrite force --template-python envs/py{py_version}-{env}
# $ pyproject2conda project --overwrite force --template-python envs\py{py_version}-{env}
#
# You should not manually edit this file.
# Instead edit the corresponding pyproject.toml file.
Expand Down
2 changes: 1 addition & 1 deletion envs/py3.11-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pyproject2conda
# with the following command:
#
# $ pyproject2conda project --overwrite force --template-python envs/py{py_version}-{env}
# $ pyproject2conda project --overwrite force --template-python envs\py{py_version}-{env}
#
# You should not manually edit this file.
# Instead edit the corresponding pyproject.toml file.
Expand Down
2 changes: 1 addition & 1 deletion envs/py3.11-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pyproject2conda
# with the following command:
#
# $ pyproject2conda project --overwrite force --template-python envs/py{py_version}-{env}
# $ pyproject2conda project --overwrite force --template-python envs\py{py_version}-{env}
#
# You should not manually edit this file.
# Instead edit the corresponding pyproject.toml file.
Expand Down
2 changes: 1 addition & 1 deletion envs/py3.12-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pyproject2conda
# with the following command:
#
# $ pyproject2conda project --overwrite force --template-python envs/py{py_version}-{env}
# $ pyproject2conda project --overwrite force --template-python envs\py{py_version}-{env}
#
# You should not manually edit this file.
# Instead edit the corresponding pyproject.toml file.
Expand Down
2 changes: 1 addition & 1 deletion envs/py3.9-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# This file is autogenerated by pyproject2conda
# with the following command:
#
# $ pyproject2conda project --overwrite force --template-python envs/py{py_version}-{env}
# $ pyproject2conda project --overwrite force --template-python envs\py{py_version}-{env}
#
# You should not manually edit this file.
# Instead edit the corresponding pyproject.toml file.
Expand Down
3 changes: 1 addition & 2 deletions hvplot/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -435,8 +435,7 @@ class HoloViewsConverter:
_op_options = [
'datashade',
'rasterize',
'pixel_ratio'
'x_sampling',
'pixel_ratio' 'x_sampling',
'y_sampling',
'downsample',
'aggregator',
Expand Down
4 changes: 2 additions & 2 deletions hvplot/tests/testoptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -606,8 +606,8 @@ def test_cticks(self, da2):
class TestXarrayPixelRatio:
def test_pixel_ratio(self, da2):
plot = da2.isel(other=0).hvplot(rasterize=True, pixel_ratio=4.0)
opts = Store.lookup_options(backend, plot, 'plot')
assert opts.kwargs['pixel_ratio'] = 4.0
opts = Store.lookup_options('bokeh', plot, 'plot')
assert opts.kwargs['pixel_ratio'] == 4.0


def test_subcoordinate_y_bool(load_pandas_accessor):
Expand Down

0 comments on commit 0ee5140

Please sign in to comment.