File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
src/superannotate/lib/core
tests/integration/aggregations Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 5959 ProjectType .DOCUMENT : DEPRECATED_DOCUMENT_PROJECTS_MESSAGE ,
6060 ProjectType .OTHER : DEPRECATED_PROJECTS_MESSAGE ,
6161 ProjectType .POINT_CLOUD : DEPRECATED_PROJECTS_MESSAGE ,
62+ ProjectType .TILED : DEPRECATED_PROJECTS_MESSAGE ,
6263}
6364
6465METADATA_DEPRICATED_FOR_PIXEL = (
Original file line number Diff line number Diff line change @@ -21,11 +21,11 @@ def folder_path(self):
2121
2222 def test_filter_instances (self ):
2323 df = sa .aggregate_annotations_as_df (self .folder_path , self .PROJECT_TYPE )
24- df = df [~ (df .duplicated (["instanceId" , "imageName " ]))]
24+ df = df [~ (df .duplicated (["instanceId" , "itemName " ]))]
2525 df = df [df .duplicated (["trackingId" ], False ) & df ["trackingId" ].notnull ()]
2626 self .assertEqual (len (df ), 2 )
2727 self .assertEqual (
28- {df .iloc [0 ]["imageName " ], df .iloc [1 ]["imageName " ]},
28+ {df .iloc [0 ]["itemName " ], df .iloc [1 ]["itemName " ]},
2929 {"example_image_1.jpg" , "example_image_2.jpg" },
3030 )
3131
You can’t perform that action at this time.
0 commit comments