We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1d1a09 commit 3c096f0Copy full SHA for 3c096f0
1 file changed
indra/literature/pubmed_client.py
@@ -630,7 +630,7 @@ def _get_article_dates(pubmed_article_data: ET.Element) -> dict:
630
res["year"] = int(year)
631
if month := _find_elem_text(dt, "Month"):
632
if isinstance(month, str):
633
- # Month mya be spelled out as "Jul" or "Aug" etc, or may be zero
+ # Month may be spelled out as "Jul" or "Aug" etc, or may be zero
634
# padded, e.g. 03 for March. Convert to integer
635
if month.isdigit():
636
month = int(month)
0 commit comments