Skip to content

Commit

Permalink
Fix Pylint.
Browse files Browse the repository at this point in the history
  • Loading branch information
ismailsunni authored and nyalldawson committed Jul 15, 2022
1 parent ace6bd8 commit 8ef2b67
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/src/python/test_provider_gdal.py
Expand Up @@ -11,20 +11,26 @@
__copyright__ = 'Copyright 2018, Nyall Dawson'

import os
import gdal

from qgis.core import (
QgsProviderRegistry,
QgsRasterLayer,
QgsRectangle,
)
from qgis.testing import start_app, unittest
from qgis.PyQt.QtCore import QTemporaryDir

from utilities import unitTestDataPath

start_app()
TEST_DATA_DIR = unitTestDataPath()


def GDAL_COMPUTE_VERSION(maj, min, rev):
return ((maj) * 1000000 + (min) * 10000 + (rev) * 100)


class PyQgsGdalProvider(unittest.TestCase):

def checkBlockContents(self, block, expected):
Expand Down

0 comments on commit 8ef2b67

Please sign in to comment.