@@ -43,7 +43,7 @@ class Migration(migrations.Migration):
4343 blank = True ,
4444 default = dict ,
4545 encoder = utilities .json .CustomFieldJSONEncoder ,
46- )
46+ ),
4747 ),
4848 ("description" , models .CharField (blank = True , max_length = 200 )),
4949 ("comments" , models .TextField (blank = True )),
@@ -61,9 +61,9 @@ class Migration(migrations.Migration):
6161 inverse_match = True ,
6262 message = "Double underscores are not permitted in custom object object type names." ,
6363 regex = "__" ,
64- )
65- ]
66- )
64+ ),
65+ ],
66+ ),
6767 ),
6868 ("version" , models .CharField (blank = True , max_length = 10 )),
6969 ("verbose_name" , models .CharField (blank = True , max_length = 100 )),
@@ -77,7 +77,7 @@ class Migration(migrations.Migration):
7777 on_delete = django .db .models .deletion .CASCADE ,
7878 related_name = "custom_object_types" ,
7979 to = "core.objecttype" ,
80- )
80+ ),
8181 ),
8282 ("tags" , taggit .managers .TaggableManager (through = "extras.TaggedItem" , to = "extras.Tag" )),
8383 ],
@@ -109,9 +109,9 @@ class Migration(migrations.Migration):
109109 inverse_match = True ,
110110 message = "Double underscores are not permitted in custom object field names." ,
111111 regex = "__" ,
112- )
113- ]
114- )
112+ ),
113+ ],
114+ ),
115115 ),
116116 ("label" , models .CharField (blank = True , max_length = 50 )),
117117 ("group_name" , models .CharField (blank = True , max_length = 50 )),
@@ -130,7 +130,7 @@ class Migration(migrations.Migration):
130130 blank = True ,
131131 max_length = 500 ,
132132 validators = [utilities .validators .validate_regex ],
133- )
133+ ),
134134 ),
135135 ("ui_visible" , models .CharField (default = "always" , max_length = 50 )),
136136 ("ui_editable" , models .CharField (default = "yes" , max_length = 50 )),
@@ -143,22 +143,22 @@ class Migration(migrations.Migration):
143143 on_delete = django .db .models .deletion .PROTECT ,
144144 related_name = "choices_for_object_type" ,
145145 to = "extras.customfieldchoiceset" ,
146- )
146+ ),
147147 ),
148148 (
149149 "custom_object_type" , models .ForeignKey (
150150 on_delete = django .db .models .deletion .CASCADE ,
151151 related_name = "fields" ,
152152 to = "netbox_custom_objects.customobjecttype" ,
153- )
153+ ),
154154 ),
155155 (
156156 "related_object_type" , models .ForeignKey (
157157 blank = True ,
158158 null = True ,
159159 on_delete = django .db .models .deletion .PROTECT ,
160160 to = "core.objecttype" ,
161- )
161+ ),
162162 ),
163163 ],
164164 options = {
0 commit comments