def to_not_negative_int_or_none(s: str) -> Optional[int]: if s: return to_non_negative_int(s) return None