Skip to content

Commit

Permalink
Ignore bogus typing error
Browse files Browse the repository at this point in the history
  • Loading branch information
WhyNotHugo committed Nov 16, 2023
1 parent 3887fbf commit e2a0b07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django_afip/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1195,7 +1195,8 @@ class Receipt(models.Model):
default=1,
help_text=_("The currency's quote on the day this receipt was issued."),
)
related_receipts = models.ManyToManyField(
# TYPING: glicth in mypy or mypy_django_plugin.
related_receipts = models.ManyToManyField( # type:ignore[var-annotated]
"Receipt",
verbose_name=_("related receipts"),
blank=True,
Expand Down

0 comments on commit e2a0b07

Please sign in to comment.