Skip to content

Commit 97089c5

Browse files
committed
Add data updating functionality
Add base class for updater, OpenAlex updater using PyAlex
1 parent 2ce7b65 commit 97089c5

File tree

5 files changed

+212
-450
lines changed

5 files changed

+212
-450
lines changed

asreviewcontrib/preprocess/io/io_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def _standardize_dataframe_for_deduplication(df, column_spec={}):
5757
# Use secondary title as journal if journal name is missing
5858
if "secondary_title" in col_names:
5959
logging.warning(
60-
f"Secondary title column will be used for filling missing values in Journal column"
60+
"Secondary title column will be used for filling missing values in Journal column"
6161
)
6262
# Replace NA values with empty strings
6363
df[all_column_spec["secondary_title"]] = np.where(

0 commit comments

Comments
 (0)