Skip to content

Commit 1ba0619

Browse files
authored
Merge pull request #8 from JLDC/paper-review
Fix inconsistencies in README
2 parents 884da6d + 3af981f commit 1ba0619

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
To install **literer**, install it using pip. Run the following commands:
66

77
```
8-
pip install literer # Install the package with pip
8+
# Install the package with pip
9+
pip install literer
910
1011
# To uninstall the package again, just use
1112
# pip uninstall literer
@@ -73,8 +74,8 @@ import pandas as pd
7374

7475
df_papers = pd.DataFrame({
7576
"authors": [", ".join(p["authors"]) for p in papers],
76-
"year": [p["year"] for p in all_papers],
77-
"title": [p["title"] for p in all_papers],
77+
"year": [p["year"] for p in papers],
78+
"title": [p["title"] for p in papers],
7879
"relevance_score": scores,
7980
"relevance_reason": reasons
8081
})

0 commit comments

Comments
 (0)