diff options
-rw-r--r-- | chocula/database.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chocula/database.py b/chocula/database.py index e27d17d..f620515 100644 --- a/chocula/database.py +++ b/chocula/database.py @@ -399,7 +399,7 @@ class ChoculaDatabase(): fatcat_issnls = list(cur.execute('SELECT DISTINCT issnl FROM fatcat_container WHERE issnl IS NOT null')) all_issnls = set([i[0] for i in index_issnls + fatcat_issnls]) print("{} total ISSN-Ls".format(len(all_issnls))) - for issnl in list(all_issnls): + for issnl in all_issnls: #print(issnl) counts['total'] += 1 |