2021-12-01 23:02:23 -06:00
|
|
|
import os
|
|
|
|
|
import typer
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
|
scriptpath = os.path.join(os.path.dirname(__file__), 'PyBlock.py')
|
2021-12-02 20:11:57 -06:00
|
|
|
os.system(f"python3 {scriptpath}")
|
2021-12-01 23:02:23 -06:00
|
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
typer.run(main)
|