diff --git a/over/callback.py b/over/callback.py index 591af05..2abbb88 100644 --- a/over/callback.py +++ b/over/callback.py @@ -99,3 +99,15 @@ def integer(arg): return int(arg, 8) return int(arg) + +def integers(*args): + """ + @while converting arguments to ints + """ + + out = [] + + for arg in args: + out.append(integer(arg)) + + return out