summaryrefslogtreecommitdiff
path: root/tests/gis_tests/test_data.py
diff options
context:
space:
mode:
authorchillaranand <anand21nanda@gmail.com>2017-01-21 18:43:44 +0530
committerTim Graham <timograham@gmail.com>2017-01-25 12:23:46 -0500
commitd6eaf7c0183cd04b78f2a55e1d60bb7e59598310 (patch)
treeab02fd9949d4bfa23e27dea45e213ce334c883f0 /tests/gis_tests/test_data.py
parentdc165ec8e5698ffc6dee6b510f1f92c9fd7467fe (diff)
Refs #23919 -- Replaced super(ClassName, self) with super().
Diffstat (limited to 'tests/gis_tests/test_data.py')
-rw-r--r--tests/gis_tests/test_data.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/gis_tests/test_data.py b/tests/gis_tests/test_data.py
index 4bec3c677e..adcd57b48b 100644
--- a/tests/gis_tests/test_data.py
+++ b/tests/gis_tests/test_data.py
@@ -47,7 +47,7 @@ class TestDS(TestObj):
# Shapefile is default extension, unless specified otherwise.
ext = kwargs.pop('ext', 'shp')
self.ds = get_ds_file(name, ext)
- super(TestDS, self).__init__(**kwargs)
+ super().__init__(**kwargs)
class TestGeom(TestObj):
@@ -72,7 +72,7 @@ class TestGeom(TestObj):
ext_ring_cs = tuplize(ext_ring_cs)
self.ext_ring_cs = ext_ring_cs
- super(TestGeom, self).__init__(**kwargs)
+ super().__init__(**kwargs)
class TestGeomSet: