Skip to content

Commit

Permalink
Small fix after VRT renamings
Browse files Browse the repository at this point in the history
  • Loading branch information
zeyadkhaled committed Sep 19, 2022
1 parent 0f155a6 commit 082f813
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6695,11 +6695,11 @@ def compare_absorbed(x, typ):
if isinstance(typ, AttributeEntityType):
return x == typ
if typ == AET.QuantityFloat:
return internals.is_aet_a_quantity_float(x)
return internals.is_vrt_a_quantity_float(x)
if typ == AET.QuantityInt:
return internals.is_aet_a_quantity_int(x)
return internals.is_vrt_a_quantity_int(x)
if typ == AET.Enum:
return internals.is_aet_a_enum(x)
return internals.is_vrt_a_enum(x)
if typ == BT.ATTRIBUTE_ENTITY_NODE:
return True

Expand Down

0 comments on commit 082f813

Please sign in to comment.