more consistent paramter order

This commit is contained in:
Manuel Barkhau 2019-07-25 10:55:31 +02:00
parent 43fe46cd1b
commit 8833bb8b2b
2 changed files with 2 additions and 2 deletions

View file

@ -226,7 +226,7 @@ def diff(new_vinfo: version.VersionInfo, file_patterns: config.PatternsByGlob) -
return full_diff
def rewrite(new_vinfo: version.VersionInfo, file_patterns: config.PatternsByGlob) -> None:
def rewrite(file_patterns: config.PatternsByGlob, new_vinfo: version.VersionInfo) -> None:
"""Rewrite project files, updating each with the new version."""
fh: typ.IO[str]