Skip to content

Commit

Permalink
Fix pylint problems
Browse files Browse the repository at this point in the history
  • Loading branch information
aleju committed Oct 28, 2019
1 parent 2ea1b91 commit fcb507d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion imgaug/augmenters/color.py
Original file line number Diff line number Diff line change
Expand Up @@ -1573,7 +1573,7 @@ class RemoveSaturation(MultiplySaturation):
per image.
* If a StochasticParameter, then a value will be sampled from that
parameter per image.
from_colorspace : str, optional
See :func:`imgaug.augmenters.color.change_colorspace_`.
Expand Down Expand Up @@ -2527,6 +2527,7 @@ def __init__(self, nb_bins=(5, 15), smoothness=(0.1, 0.3),
alpha=[0.0, 1.0], offset=(0.0, 1.0),
from_colorspace=CSPACE_RGB,
name=None, deterministic=False, random_state=None):
# pylint: disable=dangerous-default-value
super(GrayscaleColorwise, self).__init__(
name=name, deterministic=deterministic, random_state=random_state)

Expand Down

0 comments on commit fcb507d

Please sign in to comment.