1
0
mirror of https://github.com/peeringdb/peeringdb.git synced 2024-05-11 05:55:09 +00:00

black formatted

This commit is contained in:
Matt Griswold
2019-12-05 16:57:52 +00:00
parent a53cadb167
commit cf56acbfc4
106 changed files with 7894 additions and 5626 deletions

View File

@@ -8,25 +8,31 @@ from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('peeringdb_server', '0013_user_locale'),
("peeringdb_server", "0013_user_locale"),
]
operations = [
migrations.AddField(
model_name='commandlinetool',
name='description',
model_name="commandlinetool",
name="description",
field=models.CharField(
blank=True,
help_text='Descriptive text of command that can be searched',
max_length=255, null=True),
help_text="Descriptive text of command that can be searched",
max_length=255,
null=True,
),
),
migrations.AlterField(
model_name='commandlinetool',
name='tool',
model_name="commandlinetool",
name="tool",
field=models.CharField(
choices=[(b'pdb_renumber_lans', 'Renumber IP Space'),
(b'pdb_fac_merge', 'Merge Facilities'),
(b'pdb_fac_merge_undo', 'Merge Facilities: UNDO')],
help_text='name of the tool', max_length=255),
choices=[
(b"pdb_renumber_lans", "Renumber IP Space"),
(b"pdb_fac_merge", "Merge Facilities"),
(b"pdb_fac_merge_undo", "Merge Facilities: UNDO"),
],
help_text="name of the tool",
max_length=255,
),
),
]