[7823dd]: / pathaia / util / basic.py

Download this file

17 lines (11 with data), 277 Bytes

 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