Python: VSE: Remove deprecated "sequence" context API

Remove APIs that have been deprecated since Blender 4.4.
See https://developer.blender.org/docs/release_notes/4.4/python_api/#deprecated_1.

Pull Request: https://projects.blender.org/blender/blender/pulls/145597
This commit is contained in:
Falk David
2025-09-03 19:31:30 +02:00
committed by Falk David
parent 5efeb06613
commit 3978908c98
3 changed files with 3 additions and 115 deletions

View File

@@ -23,10 +23,10 @@ class SequencerLoadMetastaskTest(unittest.TestCase):
self.assertEqual(len(meta_stack), 1)
self.assertEqual(meta_stack[0].name, "MetaStrip")
self.assertEqual(len(meta_stack[0].sequences), 1)
self.assertEqual(meta_stack[0].sequences[0].name, "Color")
self.assertEqual(len(meta_stack[0].strips), 1)
self.assertEqual(meta_stack[0].strips[0].name, "Color")
# accesses ed->current_strips() through screen_ctx_selected_editable_sequences
# accesses ed->current_strips() through screen_ctx_selected_editable_strips
bpy.context.copy()