Skip to content

Commit

Permalink
code style
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterPetrik committed Jan 31, 2024
1 parent 76933b4 commit 39cad36
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Mergin/processing/algs/create_diff.py
Expand Up @@ -122,7 +122,9 @@ def processAlgorithm(self, parameters, context, feedback):
mc.get_file_diff(project_dir, file_name, diff_file, f"v{start}", f"v{end}" if end else None)
except KeyError:
# see https://github.com/MerginMaps/python-api-client/issues/196
raise QgsProcessingException("The layer for given version range contains a version with changed data schema.")
raise QgsProcessingException(
"The layer for given version range contains a version with changed data schema."
)

feedback.setProgress(20)

Expand Down

0 comments on commit 39cad36

Please sign in to comment.