auto-fix pre-commit issues

This commit is contained in:
github-actions[bot] 2025-07-25 11:53:30 +00:00 committed by Martin Dobias
parent 0076a12c38
commit 5593d1330c

View File

@ -1215,9 +1215,7 @@ class TestQgsPointCloudLayerProfileGenerator(QgisTestCase):
# curve in pcl extent
curve = QgsLineString()
curve.fromWkt(
"LineString (637780 850995, 637785 850995)"
)
curve.fromWkt("LineString (637780 850995, 637785 850995)")
req = QgsProfileRequest(curve)
req.setCrs(pcl.crs())
@ -1241,9 +1239,7 @@ class TestQgsPointCloudLayerProfileGenerator(QgisTestCase):
# curve outside pcl extent
curve = QgsLineString()
curve.fromWkt(
"LineString (639000 850722, 639005 850722)"
)
curve.fromWkt("LineString (639000 850722, 639005 850722)")
req = QgsProfileRequest(curve)
req.setCrs(pcl.crs())
@ -1254,5 +1250,6 @@ class TestQgsPointCloudLayerProfileGenerator(QgisTestCase):
results = generator.takeResults()
self.assertFalse(results)
if __name__ == "__main__":
unittest.main()