From 86db677bfd66f2c76005eb7112d629304726d386 Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Sat, 23 Mar 2024 03:01:30 -0400 Subject: [PATCH] Unneeded, Cython inserts this code for us --- av/stream.pyx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/av/stream.pyx b/av/stream.pyx index 1b5e967dd..9ce255e30 100644 --- a/av/stream.pyx +++ b/av/stream.pyx @@ -110,11 +110,6 @@ cdef class Stream: AVDeprecationWarning ) - if name == "side_data": - return self.side_data - elif name == "nb_side_data": - return self.nb_side_data - # Convenience getter for codec context properties. if self.codec_context is not None: return getattr(self.codec_context, name)