mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2026-02-12 10:06:21 +01: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)
20 lines
507 B
Python
20 lines
507 B
Python
# Generated by Django 1.11.5 on 2017-09-28 02:16
|
|
|
|
from django.db import migrations, models
|
|
import django.db.models.deletion
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('optimer', '0003_make_strings_more_stringy'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='optimer',
|
|
name='eve_character',
|
|
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, to='eveonline.EveCharacter'),
|
|
),
|
|
]
|