Skip to content

Commit

Permalink
[#485] Black and isort
Browse files Browse the repository at this point in the history
  • Loading branch information
danielmursa-dev committed Dec 16, 2024
1 parent 71f8bb5 commit 50a1ef4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ class Migration(migrations.Migration):
field=models.CharField(
max_length=40,
unique=True,
validators=[objects.token.validators.validate_no_empty, objects.token.validators.validate_no_whitespace],
validators=[
objects.token.validators.validate_no_empty,
objects.token.validators.validate_no_whitespace,
],
verbose_name="token",
),
),
Expand Down
2 changes: 1 addition & 1 deletion src/objects/token/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from django.utils.translation import gettext_lazy as _

from objects.core.models import ObjectType
from objects.token.validators import validate_no_whitespace, validate_no_empty
from objects.token.validators import validate_no_empty, validate_no_whitespace

from .constants import PermissionModes

Expand Down

0 comments on commit 50a1ef4

Please sign in to comment.