Skip to content

Commit 22613fa

Browse files
committed
Restyle
1 parent 3e8ec2d commit 22613fa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/setup/gen_pigweed_cipd_json.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def generate_new_cipd_package_json(input, output, extra):
4141
file_packages = packages.get('packages')
4242
new_file_packages = [x for x in file_packages if include_package(x)]
4343

44-
# Extra is a list of platform:json.
44+
# Extra is a list of platform:json.
4545
# Filter it for the given platform and append any resulting packages
4646
my_platform = platform.system().lower()
4747
for item in extra:
@@ -54,7 +54,6 @@ def generate_new_cipd_package_json(input, output, extra):
5454
for package in json.load(ins).get('packages'):
5555
new_file_packages.append(package)
5656

57-
5857
new_packages = {'packages': new_file_packages}
5958
with open(output, 'w') as f:
6059
json.dump(new_packages, f, indent=2)

0 commit comments

Comments
 (0)