(x:Iterable[T])
| 21 | if WIN: os.system("") |
| 22 | |
| 23 | def dedup(x:Iterable[T]): return list(dict.fromkeys(x)) # retains list order |
| 24 | def argfix(*x): |
| 25 | if x and x[0].__class__ in (tuple, list): |
| 26 | if len(x) != 1: raise ValueError(f"bad arg {x}") |
no outgoing calls
searching dependent graphs…