Skip to content

Commit

Permalink
fix -used wrong setting
Browse files Browse the repository at this point in the history
  • Loading branch information
JanCaha committed Jan 14, 2024
1 parent 58e8caf commit 4b959f2
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions processing_r/processing/algorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,9 @@
from processing_r.processing.utils import RUtils

if Qgis.QGIS_VERSION_INT >= 31000:
from qgis.core import (
QgsProcessingParameterColor, # pylint: disable=ungrouped-imports
)
from qgis.core import QgsProcessingParameterColor # pylint: disable=ungrouped-imports
if Qgis.QGIS_VERSION_INT >= 31400:
from qgis.core import (
QgsProcessingParameterDateTime, # pylint: disable=ungrouped-imports
)
from qgis.core import QgsProcessingParameterDateTime # pylint: disable=ungrouped-imports


class RAlgorithm(QgsProcessingAlgorithm): # pylint: disable=too-many-public-methods
Expand Down

0 comments on commit 4b959f2

Please sign in to comment.