From d6eaf7c0183cd04b78f2a55e1d60bb7e59598310 Mon Sep 17 00:00:00 2001 From: chillaranand Date: Sat, 21 Jan 2017 18:43:44 +0530 Subject: Refs #23919 -- Replaced super(ClassName, self) with super(). --- tests/gis_tests/test_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tests/gis_tests/test_data.py') 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: -- cgit v1.3