Skip to content

Commit

Permalink
Merge branch 'mak-testing-benchmarks-2' of https://github.com/parityt…
Browse files Browse the repository at this point in the history
…ech-stg/runtimes into mak-testing-benchmarks-2
  • Loading branch information
mordamax committed Aug 1, 2024
2 parents 711a818 + 6fad465 commit 6c3ff52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/cmd/cmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@
all_pallets = set()
for pallet in raw_pallets:
if pallet:
all_pallets.add(pallet.split(',')[0])
all_pallets.add(pallet.split(',')[0].strip())

pallets = list(all_pallets)
print(f'Pallets in {runtime}: {pallets}')
Expand Down Expand Up @@ -176,7 +176,7 @@

elif args.command == 'fmt':
nightly_version = os.getenv('RUST_NIGHTLY_VERSION')
command = f"cargo +nightly-{nightly_version} fmt";
command = f"cargo +nightly-{nightly_version} fmt"
print('Formatting with `{command}`')
nightly_status = os.system(f'{command}')
taplo_status = os.system('taplo format --config .config/taplo.toml')
Expand Down

0 comments on commit 6c3ff52

Please sign in to comment.