remove unneeded return statement
This commit is contained in:
parent
3a97239fc2
commit
0d2663ca89
2 changed files with 15 additions and 2 deletions
|
@ -23,8 +23,6 @@ def merge_areas(apps, schema_editor):
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
|
||||||
return
|
|
||||||
|
|
||||||
|
|
||||||
class Migration(migrations.Migration):
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
|
15
src/c3nav/mapdata/migrations/0050_auto_20170505_1133.py
Normal file
15
src/c3nav/mapdata/migrations/0050_auto_20170505_1133.py
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Generated by Django 1.10.4 on 2017-05-05 11:33
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('mapdata', '0049_auto_20170505_1125'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
]
|
Loading…
Add table
Add a link
Reference in a new issue