aboutsummaryrefslogtreecommitdiff
path: root/src/utils/parse/types.py
blob: 62730847c0fd818e1e086f2f13f55e5cf42aebe1 (about) (plain) (blame)
1
2
3
4
5
6
7
8
import typing

def try_int(s: str) -> typing.Optional[int]:
    try:
        return int(s)
    except ValueError:
        return None