Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
facelessuser committed Sep 16, 2024
1 parent 0dbd22d commit 5aef8c4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/test_compositing.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ class TestCompositing(util.ColorAsserts, unittest.TestCase):
def test_disable_compose(self):
"""Test that we can disable either blend or alpha compositing."""

c1 = Color.layer([Color('#07c7ed').set('alpha', 0.5), '#fc3d99'], blend='multiply', operator=False, space="srgb")
c1 = Color.layer(
[Color('#07c7ed').set('alpha', 0.5), '#fc3d99'], blend='multiply', operator=False, space="srgb"
)
c2 = Color.layer([c1, '#fc3d99'], blend=False, space="srgb")
self.assertColorEqual(
Color.layer([Color('#07c7ed').set('alpha', 0.5), '#fc3d99'], blend='multiply', space="srgb"),
Expand Down

0 comments on commit 5aef8c4

Please sign in to comment.