Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[processing] rename QGISAlgorithmProvider to QgisAlgorithmProvider to be
consistent with our guidelines
  • Loading branch information
alexbruy committed Jan 15, 2018
1 parent 0ffd993 commit e67aaf9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Expand Up @@ -2,7 +2,7 @@

"""
***************************************************************************
QGISAlgorithmProvider.py
QgisAlgorithmProvider.py
---------------------
Date : December 2012
Copyright : (C) 2012 by Victor Olaya
Expand Down Expand Up @@ -155,7 +155,7 @@
os.path.split(os.path.dirname(__file__))[0], os.pardir))


class QGISAlgorithmProvider(QgsProcessingProvider):
class QgisAlgorithmProvider(QgsProcessingProvider):

def __init__(self):
super().__init__()
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/core/Processing.py
Expand Up @@ -53,7 +53,7 @@
from processing.gui.AlgorithmExecutor import execute
from processing.tools import dataobjects

from processing.algs.qgis.QGISAlgorithmProvider import QGISAlgorithmProvider # NOQA
from processing.algs.qgis.QgisAlgorithmProvider import QgisAlgorithmProvider # NOQA
from processing.algs.grass7.Grass7AlgorithmProvider import Grass7AlgorithmProvider
from processing.algs.gdal.GdalAlgorithmProvider import GdalAlgorithmProvider # NOQA
from processing.algs.saga.SagaAlgorithmProvider import SagaAlgorithmProvider # NOQA
Expand Down

0 comments on commit e67aaf9

Please sign in to comment.