Skip to content

Commit a87a047

Browse files
committed
add __init__.py files
1 parent 6582d43 commit a87a047

File tree

5 files changed

+6
-12
lines changed

5 files changed

+6
-12
lines changed

arho_feature_template/core/forms/__init__.py

Whitespace-only changes.

arho_feature_template/core/forms/add_feature_form.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from arho_feature_template.core.feature_template import FeatureTemplate
2-
from arho_feature_template.core.forms.feature_attribute_form import \
3-
FeatureAttributeForm
2+
from arho_feature_template.core.forms.feature_attribute_form import FeatureAttributeForm
43

54

65
class AddFeatureForm(FeatureAttributeForm):

arho_feature_template/core/panels/__init__.py

Whitespace-only changes.

arho_feature_template/core/panels/add_feature_panel.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from qgis.PyQt.QtWidgets import QWidget
22

3-
from arho_feature_template.core.feature_template_library import \
4-
FeatureTemplateLibrary
3+
from arho_feature_template.core.feature_template_library import FeatureTemplateLibrary
54
from arho_feature_template.qgis_plugin_tools.tools.resources import load_ui
65

76

arho_feature_template/plugin.py

+4-8
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,11 @@
88
from qgis.PyQt.QtWidgets import QAction, QWidget
99
from qgis.utils import iface
1010

11-
from arho_feature_template.core.feature_template_library import \
12-
FeatureTemplateLibrary
11+
from arho_feature_template.core.feature_template_library import FeatureTemplateLibrary
1312
from arho_feature_template.core.panels.add_feature_panel import AddFeaturePanel
14-
from arho_feature_template.qgis_plugin_tools.tools.custom_logging import (
15-
setup_logger, teardown_logger)
16-
from arho_feature_template.qgis_plugin_tools.tools.i18n import \
17-
setup_translation
18-
from arho_feature_template.qgis_plugin_tools.tools.resources import (
19-
plugin_name, resources_path)
13+
from arho_feature_template.qgis_plugin_tools.tools.custom_logging import setup_logger, teardown_logger
14+
from arho_feature_template.qgis_plugin_tools.tools.i18n import setup_translation
15+
from arho_feature_template.qgis_plugin_tools.tools.resources import plugin_name, resources_path
2016

2117
LIBRARY_JSON = resources_path("asemakaava-template-library-test.json")
2218

0 commit comments

Comments
 (0)