13 lines
300 B
Python
13 lines
300 B
Python
|
""" Test telltale file """
|
||
|
import logging
|
||
|
|
||
|
from mylib.scripts.telltale_test import default_filepath
|
||
|
from mylib.telltale import TelltaleFile
|
||
|
|
||
|
log = logging.getLogger(__name__)
|
||
|
|
||
|
|
||
|
def main(argv=None):
|
||
|
"""Script main"""
|
||
|
TelltaleFile.check_entrypoint(argv=argv, default_filepath=default_filepath)
|