Yes it is with “# type: ignore”, for example:
try:
return int(maybe_digits_string) # type: ignore
except Exception:
return None
Yes it is with “# type: ignore”, for example:
try:
return int(maybe_digits_string) # type: ignore
except Exception:
return None