Coverage for grm\__init__.py: 50%

4 statements  

« prev     ^ index     » next       coverage.py v7.2.3, created at 2023-04-10 14:44 +0900

1# -*- coding: utf-8 -*- 

2""" 

3/*************************************************************************** 

4 GRM 

5 A QGIS plugin 

6 GRM 

7 Generated by Plugin Builder: http://g-sherman.github.io/Qgis-Plugin-Builder/ 

8 ------------------- 

9 begin : 2020-01-08 

10 copyright : (C) 2020 by Hermesys 

11 email : shpark@hermesys.co.kr 

12 git sha : $Format:%H$ 

13 ***************************************************************************/ 

14 

15/*************************************************************************** 

16 * * 

17 * This program is free software; you can redistribute it and/or modify * 

18 * it under the terms of the GNU General Public License as published by * 

19 * the Free Software Foundation; either version 2 of the License, or * 

20 * (at your option) any later version. * 

21 * * 

22 ***************************************************************************/ 

23 This script initializes the plugin, making it known to QGIS. 

24""" 

25 

26 

27# noinspection PyPep8Naming 

28def classFactory(iface): # pylint: disable=invalid-name 

29 """Load GRM class from file GRM. 

30 

31 :param iface: A QGIS interface instance. 

32 :type iface: QgsInterface 

33 """ 

34 # 

35 from .GRM import GRM 

36 return GRM(iface)