We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb74176 commit 37327e9Copy full SHA for 37327e9
2 files changed
sr-data/src/sr_data/steps/pulls.py
@@ -31,7 +31,7 @@
31
def main(repos, out, token):
32
frame = pd.read_csv(repos)
33
for idx, row in frame.iterrows():
34
- frame.at[idx, "pulls"] = pulls(row["repo"], token)
+ frame.at[idx, "pulls_count"] = pulls(row["repo"], token)
35
frame.to_csv(out, index=False)
36
37
sr-data/src/tests/test_pulls.py
@@ -44,4 +44,4 @@ def test_finds_pulls(self):
44
path,
45
os.environ["GH_TESTING_TOKEN"]
46
)
47
- self.assertTrue("pulls" in pd.read_csv(path).columns)
+ self.assertTrue("pulls_count" in pd.read_csv(path).columns)
0 commit comments