-
Notifications
You must be signed in to change notification settings - Fork 0
/
__init__.py
executable file
·29 lines (23 loc) · 980 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# -*- coding: utf-8 -*-
"""
/***************************************************************************
SocialBurdenCalculator
A QGIS plugin
This plugin calculates social burden
Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/
-------------------
begin : 2022-08-30
email : oehart@sandia.gov
git sha : $Format:%H$
***************************************************************************/
This script initializes the plugin, making it known to QGIS.
"""
# noinspection PyPep8Naming
def classFactory(iface): # pylint: disable=invalid-name
"""Load SocialBurdenCalculator class from file SocialBurdenCalculator.
:param iface: A QGIS interface instance.
:type iface: QgsInterface
"""
#
from .social_burden_calculator import SocialBurdenCalculator
return SocialBurdenCalculator(iface)