Is it possible to ignore pyright checking for one line?
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