From e13748c3e1e40d39e680e507deab74622b6c3581 Mon Sep 17 00:00:00 2001 From: jimman2003 Date: Wed, 6 Apr 2022 02:20:04 +0300 Subject: [PATCH] Remove print argument in print_dump --- openlibrary/data/dump.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openlibrary/data/dump.py b/openlibrary/data/dump.py index fa43d2e8242..7c188ff5197 100644 --- a/openlibrary/data/dump.py +++ b/openlibrary/data/dump.py @@ -29,7 +29,7 @@ logger.setLevel(logging.DEBUG) -def print_dump(json_records, filter=None, print=print): +def print_dump(json_records, filter=None): """Print the given json_records in the dump format.""" for i, raw_json_data in enumerate(json_records): if i % 1_000_000 == 0: