Skip to content

Commit 58a9f99

Browse files
committed
Remove type hints from arxiv_fetch.py
- Removed type hints from normalize_license_text function - Type checkers not yet used as tooling for the project
1 parent 9b83241 commit 58a9f99

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/1-fetch/arxiv_fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ def get_requests_session():
248248
return session
249249

250250

251-
def normalize_license_text(raw_text: str) -> str:
251+
def normalize_license_text(raw_text):
252252
"""Normalize license text to standard CC license identifiers."""
253253
if not raw_text:
254254
return "Unknown"

0 commit comments

Comments
 (0)