Download this file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
# coding utf-8 """Useful functions for general use""" from typing import Any def ifnone(x: Any, default: Any) -> Any: return x if x is not None else default def dumb(): """ Dumb function. A dumb function to test github actions on changes. """ pass