fake-bpy-module
                                
                                
                                
                                    fake-bpy-module copied to clipboard
                            
                            
                            
                        MovieTrackingMarker.pattern_corners should be List[List[float]]
System Information
- OS: macOS Big Sur 11.6.2
 - Blender version: 2.83
 
Expected behavior
MovieTrackingMarker.pattern_corners should be a list of lists, as documented here:
https://docs.blender.org/api/current/bpy.types.MovieTrackingMarker.html#bpy.types.MovieTrackingMarker.pattern_corners
Description about the bug
- Download this file: https://github.com/nutti/fake-bpy-module/releases/download/20211212/fake_bpy_modules_2.83-20211212.zip
 - Open 
bpy/types.py - Line 
21,733says:pattern_corners: typing.List[float] = None, but should bepattern_corners: typing.List[List[float]] = None(note the nestedLists) 
I have experimentally verified that the documentation is correct. pattern_corners is a list of lists and nothing else.