Skip to content

Commit 37327e9

Browse files
committed
fix(#174): typo
1 parent cb74176 commit 37327e9

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

sr-data/src/sr_data/steps/pulls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
def main(repos, out, token):
3232
frame = pd.read_csv(repos)
3333
for idx, row in frame.iterrows():
34-
frame.at[idx, "pulls"] = pulls(row["repo"], token)
34+
frame.at[idx, "pulls_count"] = pulls(row["repo"], token)
3535
frame.to_csv(out, index=False)
3636

3737

sr-data/src/tests/test_pulls.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ def test_finds_pulls(self):
4444
path,
4545
os.environ["GH_TESTING_TOKEN"]
4646
)
47-
self.assertTrue("pulls" in pd.read_csv(path).columns)
47+
self.assertTrue("pulls_count" in pd.read_csv(path).columns)

0 commit comments

Comments
 (0)