mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-12-07 21:31:42 +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)
18 lines
316 B
Python
18 lines
316 B
Python
# Generated by Django 1.10.2 on 2016-12-12 01:00
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('mumble', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelTable(
|
|
name='mumbleuser',
|
|
table=None,
|
|
),
|
|
]
|