Skip to content

Commit

Permalink
Update stats_data_generate.py
Browse files Browse the repository at this point in the history
Fixed the path to contributors.csv
  • Loading branch information
pareenaverma authored Nov 4, 2024
1 parent 88d5de0 commit b089b45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/stats_data_generate.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def authorAdd(author_name,tracking_dic):
### Update 'contributions' area, internal vs external contributions

# open the contributors CSV file
with open('../contributors.csv', mode ='r')as file:
with open('../assets/contributors.csv', mode ='r')as file:
csvFile = csv.reader(file)
for line in csvFile:
company = line[1]
Expand Down

0 comments on commit b089b45

Please sign in to comment.