Skip to content

Commit 6ddde78

Browse files
committed
Remove redundant None check in bucket_author_count function
1 parent f554e91 commit 6ddde78

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

scripts/1-fetch/arxiv_fetch.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -429,8 +429,6 @@ def bucket_author_count(n):
429429
Buckets: "1", "2", "3", "4", "5+", "Unknown"
430430
Reduces granularity for better statistical analysis.
431431
"""
432-
if n is None:
433-
return "Unknown"
434432
if n == 1:
435433
return "1"
436434
if n == 2:

0 commit comments

Comments
 (0)