Skip to content

Commit

Permalink
[chores] Fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
pandafy committed Mar 7, 2024
1 parent 01c1d5a commit b427efd
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 4 deletions.
14 changes: 12 additions & 2 deletions openwisp_controller/config/migrations/0056_alter_config_status.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Generated by Django 4.2.11 on 2024-03-07 17:09

from django.db import migrations
import model_utils.fields
from django.db import migrations


class Migration(migrations.Migration):
Expand All @@ -23,7 +23,17 @@ class Migration(migrations.Migration):
("deactivated", "deactivated"),
],
default="modified",
help_text='"modified" means the configuration is not applied yet; \n"applied" means the configuration is applied successfully; \n"error" means the configuration caused issues and it was rolled back; \n"deactivating" means the device has been deactivated and all the configuration is being removed; \n"deactivated" means the configuration has been removed from the device;',
help_text=(
'"modified" means the configuration is not applied yet; \n'
'"applied" means the configuration is applied successfully; \n'
'"error" means the configuration caused issues '
'and it was rolled back; \n'
'"deactivating" means the device has been deactivated and'
' all the configuration'
' is being removed; \n'
'"deactivated" means the configuration has been removed'
' from the device;'
),
max_length=100,
no_check_for_status=True,
verbose_name="configuration status",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Generated by Django 4.2.11 on 2024-03-07 17:10

from django.db import migrations
import model_utils.fields
from django.db import migrations


class Migration(migrations.Migration):
Expand All @@ -23,7 +23,17 @@ class Migration(migrations.Migration):
("deactivated", "deactivated"),
],
default="modified",
help_text='"modified" means the configuration is not applied yet; \n"applied" means the configuration is applied successfully; \n"error" means the configuration caused issues and it was rolled back; \n"deactivating" means the device has been deactivated and all the configuration is being removed; \n"deactivated" means the configuration has been removed from the device;',
help_text=(
'"modified" means the configuration is not applied yet; \n'
'"applied" means the configuration is applied successfully; \n'
'"error" means the configuration caused issues '
'and it was rolled back; \n'
'"deactivating" means the device has been deactivated and'
' all the configuration'
' is being removed; \n'
'"deactivated" means the configuration has been removed'
' from the device;'
),
max_length=100,
no_check_for_status=True,
verbose_name="configuration status",
Expand Down

0 comments on commit b427efd

Please sign in to comment.