Skip to content

Commit

Permalink
chore: delete get_path script
Browse files Browse the repository at this point in the history
  • Loading branch information
ocamilomontealegre committed Nov 15, 2024
1 parent 6b359f0 commit 127bb56
Showing 1 changed file with 1 addition and 18 deletions.
19 changes: 1 addition & 18 deletions scripts.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,5 @@
from sys import executable
# from os import path, environ
from subprocess import CalledProcessError, check_call, run


# def get_poetry_python_path() -> str:
# platform: str = environ.get("PLATFORM")
# print(f"platform: ${platform}")

# """Get the Python executable path from the Poetry virtual environment."""
# result = run(
# ["poetry", "env", "info", "--path"], capture_output=True, text=True, check=True
# )
# poetry_env_path = result.stdout.strip()

# if platform == "mac":
# return path.join(poetry_env_path, "bin", "python")
# else:
# return path.join(poetry_env_path, "Scripts", "python.exe")
from subprocess import CalledProcessError, check_call


def start() -> None:
Expand Down

0 comments on commit 127bb56

Please sign in to comment.