We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82439e5 commit a960cd6Copy full SHA for a960cd6
script/sync_contributors.rb
@@ -50,7 +50,7 @@ def transform_contributors(contributors)
50
contributor["login"]
51
end.sort
52
53
- { "usernames" => usernames }
+ {"usernames" => usernames}
54
end
55
56
# Write contributors data to YAML file
@@ -62,7 +62,7 @@ def write_contributors_yaml(data)
62
63
File.write(output_path, data.to_yaml)
64
puts "Contributors synced to #{output_path}"
65
- puts "Found #{data['usernames'].length} contributors"
+ puts "Found #{data["usernames"].length} contributors"
66
67
68
# Main execution
0 commit comments