Skip to content

Commit

Permalink
Update provider for themes 2 and 9
Browse files Browse the repository at this point in the history
  • Loading branch information
geomondego authored Feb 25, 2020
1 parent 1400149 commit 429c3ab
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions qgis2CartTop/processing_provider/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
from .exportar_elemento_associado_de_agua import Exportar_elemento_associado_de_agua
from .exportar_elemento_associado_de_eletricidade import Exportar_elemento_associado_de_eletricidade
from .exportar_cabo_eletrico import Exportar_cabo_eletrico


from .exportar_designacao_local import Exportar_designacao_local
from .exportar_mobiliario_urbano_sinal import Exportar_mob_urbano_sinal

class Provider(QgsProcessingProvider):

Expand All @@ -20,6 +20,8 @@ def loadAlgorithms(self, *args, **kwargs):
self.addAlgorithm(Exportar_elemento_associado_de_agua())
self.addAlgorithm(Exportar_elemento_associado_de_eletricidade())
self.addAlgorithm(Exportar_cabo_eletrico())
self.addAlgorithm(Exportar_designacao_local())
self.addAlgorithm(Exportar_mob_urbano_sinal())
# add additional algorithms here
# self.addAlgorithm(MyOtherAlgorithm())

Expand All @@ -43,4 +45,4 @@ def icon(self):
"""Should return a QIcon which is used for your provider inside
the Processing toolbox.
"""
return QgsProcessingProvider.icon(self)
return QgsProcessingProvider.icon(self)

0 comments on commit 429c3ab

Please sign in to comment.