1 2 3 4 5 6 7 8 9 10 11 12
#!/usr/bin/env python3 from __future__ import annotations import sys from pathlib import Path sys.path.insert(0, str(Path(__file__).resolve().parent)) from just_tasks.__main__ import main # noqa: E402 if __name__ == "__main__": main()