mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-17 00:10:15 +02:00
- update string format method - remove redundant default arguments from function calls - remove unused imports - remove unicode identifier from strings, it's default in py3 (see: https://stackoverflow.com/a/4182635/12201331)
21 lines
558 B
Python
21 lines
558 B
Python
# Generated by Django 1.10.5 on 2017-03-27 03:29
|
|
|
|
from django.db import migrations
|
|
import sortedm2m.fields
|
|
from sortedm2m.operations import AlterSortedManyToManyField
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('hrapplications', '0004_make_strings_more_stringy'),
|
|
]
|
|
|
|
operations = [
|
|
AlterSortedManyToManyField(
|
|
model_name='applicationform',
|
|
name='questions',
|
|
field=sortedm2m.fields.SortedManyToManyField(help_text=None, to='hrapplications.ApplicationQuestion'),
|
|
),
|
|
]
|