mirror of
git://git.yoctoproject.org/poky
synced 2026-08-15 02:16:25 +00:00
removed unused imports which made the code harder to read, and slightly but less efficient (Bitbake rev: 4367692a932ac135c5aa4f9f2a4e4f0150f76697) Signed-off-by: Frazer Clews <frazer.clews@codethink.co.uk> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
324 B
Python
18 lines
324 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('orm', '0010_delete_layer_source_references'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.DeleteModel(
|
|
name='LayerSource',
|
|
),
|
|
]
|