Skip to content

Commit

Permalink
[processing] don't use function annotations as this breaks build on
Browse files Browse the repository at this point in the history
systems with Python < 3.3 (fix #18961)
  • Loading branch information
alexbruy committed May 16, 2018
1 parent c1acc29 commit 1783394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/gdal/GdalUtils.py
Expand Up @@ -414,7 +414,7 @@ def writeLayerParameterToTextFile(filename, alg, parameters, parameter_name, con
return listFile

@staticmethod
def gdal_crs_string(crs: QgsCoordinateReferenceSystem) -> str:
def gdal_crs_string(crs):
"""
Converts a QgsCoordinateReferenceSystem to a string understandable
by GDAL
Expand Down

0 comments on commit 1783394

Please sign in to comment.