We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4beb47d commit 4348de5Copy full SHA for 4348de5
branca/colormap.py
@@ -175,7 +175,8 @@ def rgba_bytes_tuple(self, x: float) -> TypeRGBAInts:
175
"""Provides the color corresponding to value `x` in the
176
form of a tuple (R,G,B,A) with int values between 0 and 255.
177
"""
178
- return tuple(_color_normalized_float_to_byte_int(u) for u in self.rgba_floats_tuple(x)) # type: ignore
+ return tuple(_color_normalized_float_to_byte_int(u)
179
+ for u in self.rgba_floats_tuple(x)) # type: ignore
180
181
def rgb_bytes_tuple(self, x: float) -> TypeRGBInts:
182
0 commit comments