@@ -92,6 +92,7 @@ def build_main_annotations_lookup_table(
9292 "tag" ,
9393 "string" ,
9494 "table" ,
95+ "simple_table" ,
9596 "graph" ,
9697 "mask" ,
9798 "raster_layer" ,
@@ -280,7 +281,9 @@ def _get_team_properties_annotation_lookup(client):
280281 team_properties = client .get_team_properties ()
281282
282283 # (property-name, annotation_class_id): FullProperty object
283- team_properties_annotation_lookup : Dict [Tuple [str , Optional [int ]], FullProperty ] = {}
284+ team_properties_annotation_lookup : Dict [
285+ Tuple [str , Optional [int ]], FullProperty
286+ ] = {}
284287 for prop in team_properties :
285288 team_properties_annotation_lookup [(prop .name , prop .annotation_class_id )] = prop
286289
@@ -425,7 +428,6 @@ def _import_properties(
425428 a_prop .name ,
426429 annotation_class_id ,
427430 ) not in team_properties_annotation_lookup :
428-
429431 # check if fullproperty exists in create_properties
430432 for full_property in create_properties :
431433 if (
@@ -893,9 +895,9 @@ def import_annotations( # noqa: C901
893895
894896 # Need to re parse the files since we didn't save the annotations in memory
895897 for local_path in set (local_file .path for local_file in local_files ): # noqa: C401
896- imported_files : Union [List [ dt . AnnotationFile ], dt . AnnotationFile , None ] = (
897- importer ( local_path )
898- )
898+ imported_files : Union [
899+ List [ dt . AnnotationFile ], dt . AnnotationFile , None
900+ ] = importer ( local_path )
899901 if imported_files is None :
900902 parsed_files = []
901903 elif not isinstance (imported_files , List ):
0 commit comments