Skip to content

Commit

Permalink
fix bad type
Browse files Browse the repository at this point in the history
  • Loading branch information
davmlaw committed Aug 18, 2024
1 parent 53d8bc3 commit 79470ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def handle(self, *args, **options):
if existing_vc != clingen_vc:
logging.info(f"{allele} has variant {repr(existing_vc)} not matching expected for build {va.genome_build}: {repr(clingen_vc)}")
if not dry_run:
liftover_res = AlleleLiftover.objects.filter(variant_allele=allele,
liftover_res = AlleleLiftover.objects.filter(allele=allele,
liftover__genome_build=va.genome_build).delete()
logging.info(f"Removing liftover record: %s", liftover_res)
va_res = va.delete()
Expand Down

0 comments on commit 79470ce

Please sign in to comment.