From 2df1584ca245cd7eb47bd5fa1eeb135330fb0c30 Mon Sep 17 00:00:00 2001 From: Ben Pedigo Date: Thu, 7 Aug 2025 10:44:07 -0700 Subject: [PATCH] remove reference tag with confidence --- emannotationschemas/schemas/base.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/emannotationschemas/schemas/base.py b/emannotationschemas/schemas/base.py index 3d3708f..c3c7df3 100644 --- a/emannotationschemas/schemas/base.py +++ b/emannotationschemas/schemas/base.py @@ -216,12 +216,3 @@ class ReferenceInteger(ReferenceAnnotation): required=True, description="Integer value to be attached to the annotation", ) - - -class ReferenceTagWithConfidence(ReferenceAnnotation): - """Reference annotation with a float value describing confidence in the tag""" - - confidence = mm.fields.Float( - required=True, - description="Confidence value to be attached to the annotation", - )