Skip to content
open_dashboard.py 200 B
Newer Older
import subprocess
import os

def main():
    dir_path = os.path.dirname(os.path.realpath(__file__))
    subprocess.call(['sh', f'{dir_path}/open_dashboard.sh'])

if __name__ == '__main__':
    main()