summaryrefslogtreecommitdiff
path: root/lib/utils.py
blob: 405d1483ca6a42f784622bccbf9bf3070051a9a1 (plain)
1
2
3
4
5
6
7
8
def is_numeric(n):
    if n == None:
        return False
    try:
        int(n)
        return True
    except ValueError:
        return False