Skip to content

Commit

Permalink
Format scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
Denis-Averin committed Jul 26, 2023
1 parent 6fcf00d commit 5852eaa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ format: format-black

.PHONY: format-black
format-black:
python -m black --line-length=120 .
python -m black --line-length=120 -v .

.PHONY: swagger
swagger:
Expand Down
2 changes: 1 addition & 1 deletion scripts/new-version.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def save_config(config, filename):

def main(new_versions):
assert 2 <= len(new_versions) <= 3, "Version format should be: 23 7 or 23 7 1"
new_version = tuple(new_versions + [0] * (3-len(new_versions)))
new_version = tuple(new_versions + [0] * (3 - len(new_versions)))

set_android_version(new_version)
set_dart_version(new_version)
Expand Down

0 comments on commit 5852eaa

Please sign in to comment.