mirror of
https://github.com/curly60e/pyblock.git
synced 2026-08-17 13:07:17 +02:00
12 lines
196 B
Python
12 lines
196 B
Python
|
|
import os
|
||
|
|
import typer
|
||
|
|
|
||
|
|
|
||
|
|
def main():
|
||
|
|
scriptpath = os.path.join(os.path.dirname(__file__), 'PyBlock.py')
|
||
|
|
os.system(f"python3 {scriptpath}")
|
||
|
|
|
||
|
|
|
||
|
|
if __name__ == "__main__":
|
||
|
|
typer.run(main)
|