mirror of
https://github.com/ajurna/cbwebreader.git
synced 2025-12-06 06:17:17 +00:00
* Adding black, isort, and flake8 to pytest * Applying black, flake8, and isort to codebase
14 lines
350 B
Python
14 lines
350 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("comic", "0006_auto_20150625_1411")]
|
|
|
|
operations = [
|
|
migrations.AlterField(model_name="setting", name="name", field=models.CharField(unique=True, max_length=100))
|
|
]
|