• what is the recursion depth on this thing

Question related to mission Number Length

 

this is y code it runs fin on VS but here it doesn't the error recursion depth exceeded

def decimalDivition(a:int): if a<1: return 1 else: return 1 + decimalDivition(a); def number_length(a: int) -> int: numberLength=decimalDivition(a) return numberLength