From 334bf4c2089a4e191f7c2b4bbdc5cbd8fd9f7677 Mon Sep 17 00:00:00 2001 From: Florian Schleich Date: Thu, 26 Sep 2024 18:55:30 -0700 Subject: [PATCH] Fixed blank lines linting errors Signed-off-by: Florian Schleich --- tests/test_effect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_effect.py b/tests/test_effect.py index 86023119f..8bc366ab9 100644 --- a/tests/test_effect.py +++ b/tests/test_effect.py @@ -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'}) @@ -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)