aboutsummaryrefslogtreecommitdiffstats
path: root/chocula/database.py
diff options
context:
space:
mode:
Diffstat (limited to 'chocula/database.py')
-rw-r--r--chocula/database.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/chocula/database.py b/chocula/database.py
index d4fbbed..ecc2858 100644
--- a/chocula/database.py
+++ b/chocula/database.py
@@ -435,7 +435,11 @@ class ChoculaDatabase:
cur = self.db.cursor()
self.db.row_factory = sqlite3.Row
# don't include new journals if they are *only* in hathitrust KBART
- index_issnls = list(cur.execute("SELECT DISTINCT issnl FROM directory WHERE slug != 'hathitrust'"))
+ index_issnls = list(
+ cur.execute(
+ "SELECT DISTINCT issnl FROM directory WHERE slug != 'hathitrust'"
+ )
+ )
fatcat_issnls = list(
cur.execute(
"SELECT DISTINCT issnl FROM fatcat_container WHERE issnl IS NOT null"