Skip to content

Commit

Permalink
remove dupe validator (??)
Browse files Browse the repository at this point in the history
  • Loading branch information
vegu committed May 2, 2024
1 parent f6f00fc commit 5ee7c8b
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class Migration(migrations.Migration):
null=True,
validators=[
django.core.validators.MinValueValidator(0),
django.core.validators.MinValueValidator(0),
],
verbose_name="Route Server ASN",
),
Expand All @@ -48,7 +47,6 @@ class Migration(migrations.Migration):
unique=True,
validators=[
django.core.validators.MinValueValidator(0),
django.core.validators.MinValueValidator(0),
],
verbose_name="ASN",
),
Expand Down Expand Up @@ -77,7 +75,6 @@ class Migration(migrations.Migration):
null=True,
validators=[
django.core.validators.MinValueValidator(0),
django.core.validators.MinValueValidator(0),
],
verbose_name="Local ASN",
),
Expand All @@ -88,7 +85,6 @@ class Migration(migrations.Migration):
field=django_inet.models.ASNField(
validators=[
django.core.validators.MinValueValidator(0),
django.core.validators.MinValueValidator(0),
],
verbose_name="ASN",
),
Expand Down

0 comments on commit 5ee7c8b

Please sign in to comment.