Skip to content

Commit

Permalink
fix: Normalization map (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
Constantin343 committed Jan 15, 2024
1 parent d7dd47a commit afd2ccf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions parma_mining/github/normalization_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,27 +101,27 @@ class GithubNormalizationMap:
],
},
{
"SourceField": "aggregated_size",
"SourceField": "aggregated_sum_size",
"DataType": "int",
"MeasurementName": "total repository size",
},
{
"SourceField": "aggregated_watchers_count",
"SourceField": "aggregated_sum_watchers_count",
"DataType": "int",
"MeasurementName": "total watchers count",
},
{
"SourceField": "aggregated_open_issues_count",
"SourceField": "aggregated_sum_open_issues_count",
"DataType": "int",
"MeasurementName": "total open issues count",
},
{
"SourceField": "aggregated_stars",
"SourceField": "aggregated_sum_stars",
"DataType": "int",
"MeasurementName": "total repository stars",
},
{
"SourceField": "aggregated_forks",
"SourceField": "aggregated_sum_forks",
"DataType": "int",
"MeasurementName": "total repository forks",
},
Expand Down

0 comments on commit afd2ccf

Please sign in to comment.