25 lines
681 B
Plaintext
25 lines
681 B
Plaintext
|
|
#!/usr/bin/env python
|
||
|
|
|
||
|
|
|
||
|
|
from ._action_ import Action
|
||
|
|
from ._ansii_ import (Color, TerminalDimensions, cl, padAnsii, regAnsiiComp, terminalDimensions)
|
||
|
|
from ._basic_ import (SortReversor, flattenDict, segmentList, transpose, uniquePreserveOrder)
|
||
|
|
from ._comPool_ import ComPool
|
||
|
|
from ._jq_ import jdumps, jq
|
||
|
|
from ._logger_ import log
|
||
|
|
from ._obj_ import Dunder
|
||
|
|
from ._rgb_ import RGB, interpolatePoint, interpolateRGB
|
||
|
|
from ._string_ import randomString
|
||
|
|
from ._typing_ import *
|
||
|
|
from ._typeCheck_ import IterableType, isIterableType, checkType
|
||
|
|
|
||
|
|
tester = Tester(name=__file__)
|
||
|
|
|
||
|
|
@tester.add(assertResult=True)
|
||
|
|
def retTrue():
|
||
|
|
return True
|
||
|
|
|
||
|
|
log.info(tester.run())
|
||
|
|
tester.exitWithStatus()
|
||
|
|
|