File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -479,9 +479,9 @@ def OggAudioFile(filename):
479479 return _guess_format (filename , options )
480480
481481
482- OggAudioFile .EXTENSIONS = [".oga" ]
483- OggAudioFile .NAME = "Ogg Audio"
484- OggAudioFile .supports_tag = VCommentFile .supports_tag
482+ OggAudioFile .EXTENSIONS = [".oga" ] # type: ignore[attr-defined]
483+ OggAudioFile .NAME = "Ogg Audio" # type: ignore[attr-defined]
484+ OggAudioFile .supports_tag = VCommentFile .supports_tag # type: ignore[attr-defined]
485485
486486
487487def OggVideoFile (filename ):
@@ -490,8 +490,8 @@ def OggVideoFile(filename):
490490 return _guess_format (filename , options )
491491
492492
493- OggVideoFile .EXTENSIONS = [".ogv" ]
494- OggVideoFile .NAME = "Ogg Video"
493+ OggVideoFile .EXTENSIONS = [".ogv" ] # type: ignore[attr-defined]
494+ OggVideoFile .NAME = "Ogg Video" # type: ignore[attr-defined]
495495OggVideoFile .supports_tag = VCommentFile .supports_tag
496496
497497
You can’t perform that action at this time.
0 commit comments