Skip to content

Commit 82e38b6

Browse files
committed
upload deprecated pipelines and black
1 parent 443b14e commit 82e38b6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/python_packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build sdist
2222
run: python setup.py sdist
2323

24-
- uses: actions/upload-artifact@v2
24+
- uses: actions/upload-artifact@v3
2525
with:
2626
path: dist/*.tar.gz
2727

mergin/cli.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,6 +661,7 @@ def reset(ctx):
661661
except Exception as e:
662662
_print_unhandled_exception()
663663

664+
664665
@cli.command()
665666
@click.argument("project")
666667
@click.option("--json", is_flag=True, default=False, help="Output in JSON format")
@@ -680,7 +681,7 @@ def list_files(ctx, project, json):
680681
else:
681682
click.echo("Fetched {} files .".format(len(project_files)))
682683
for file in project_files:
683-
click.echo(" {:40}\t{:6.1f} MB".format(file['path'], file["size"] / (1024 * 1024)))
684+
click.echo(" {:40}\t{:6.1f} MB".format(file["path"], file["size"] / (1024 * 1024)))
684685

685686

686687
if __name__ == "__main__":

0 commit comments

Comments
 (0)