Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove unused code
  • Loading branch information
nyalldawson committed Nov 17, 2019
1 parent a27db35 commit 2d83fb2
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions python/plugins/processing/algs/qgis/QgisAlgorithmProvider.py
Expand Up @@ -28,10 +28,6 @@

from PyQt5.QtCore import QCoreApplication

from processing.script import ScriptUtils

from .QgisAlgorithm import QgisAlgorithm

from .AddTableField import AddTableField
from .Aggregate import Aggregate
from .Aspect import Aspect
Expand Down Expand Up @@ -134,10 +130,6 @@
from .ZonalStatistics import ZonalStatistics


pluginPath = os.path.normpath(os.path.join(
os.path.split(os.path.dirname(__file__))[0], os.pardir))


class QgisAlgorithmProvider(QgsProcessingProvider):
fieldMappingParameterName = QCoreApplication.translate('Processing', 'Fields Mapper')

Expand Down Expand Up @@ -250,13 +242,6 @@ def getAlgs(self):
ZonalStatistics()
]

# to store algs added by 3rd party plugins as scripts
#folder = os.path.join(os.path.dirname(__file__), 'scripts')
#scripts = ScriptUtils.loadFromFolder(folder)
#for script in scripts:
# script.allowEdit = False
#algs.extend(scripts)

return algs

def id(self):
Expand Down

0 comments on commit 2d83fb2

Please sign in to comment.