From 777726112046d5a7b024c005f2fbf4b4e7109806 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Tue, 25 Jun 2024 14:18:14 -0400 Subject: [PATCH] Remove SubtitleSet.packet Always returned `None`. Appeared to be not implemented correctly. Undocumented in type stubs. --- av/subtitles/subtitle.pxd | 3 --- 1 file changed, 3 deletions(-) diff --git a/av/subtitles/subtitle.pxd b/av/subtitles/subtitle.pxd index 29ddc422..508eb903 100644 --- a/av/subtitles/subtitle.pxd +++ b/av/subtitles/subtitle.pxd @@ -1,14 +1,11 @@ cimport libav as lib -from av.packet cimport Packet - cdef class SubtitleProxy: cdef lib.AVSubtitle struct cdef class SubtitleSet: - cdef readonly Packet packet cdef SubtitleProxy proxy cdef readonly tuple rects