Skip to content

Commit 8fec28d

Browse files
authored
Merge pull request #810 from flairNLP/fix-parser-info-type-annotation
Ignore type check for `MONTHS`
2 parents 716b827 + ea6cecb commit 8fec28d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/fundus/parser/utility.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -505,7 +505,8 @@ class CustomParserInfo(parser.parserinfo):
505505
("Oct", "October", "Oktober", "Okt"),
506506
("Nov", "November"),
507507
("Dec", "December", "Dezember", "Dez"),
508-
]
508+
] # type: ignore[assignment]
509+
# type ignore due to types-python-dateutil==2.9.0.20251008, see https://github.com/flairNLP/fundus/issues/806
509510

510511

511512
def generic_date_parsing(date_str: Optional[str]) -> Optional[datetime]:

0 commit comments

Comments
 (0)