Skip to content

Commit

Permalink
Fixed blank lines linting errors
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Schleich <[email protected]>
  • Loading branch information
fschleich committed Sep 27, 2024
1 parent 3cb9733 commit 334bf4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_effect.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ def test_setters(self):
self.assertEqual(ef.effect_name, "flop")
self.assertEqual(ef.enabled, True)


class TestLinearTimeWarp(unittest.TestCase, otio_test_utils.OTIOAssertions):
def test_cons(self):
ef = otio.schema.LinearTimeWarp("Foo", 2.5, {'foo': 'bar'})
Expand All @@ -91,7 +92,6 @@ def test_cons(self):
self.assertEqual(ef.metadata, {"foo": "bar"})
self.assertEqual(ef.enabled, True)


def test_serialize(self):
ef = otio.schema.LinearTimeWarp("Foo", 2.5, {'foo': 'bar'})
encoded = otio.adapters.otio_json.write_to_string(ef)
Expand Down

0 comments on commit 334bf4c

Please sign in to comment.