Skip to content

Commit 92e6f71

Browse files
committed
ref: correctly path types
1 parent 36aa8c9 commit 92e6f71

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

pytailwindcss_extra/main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515
def main() -> None:
1616
bin_dir_path = environ.get("PYTAILWINDCSS_EXTRA_BIN_DIR")
1717
if not bin_dir_path:
18-
bin_dir_path = Path(__file__).parent.resolve() / "bin"
18+
bin_dir_path: Path = Path(__file__).parent.resolve() / "bin"
19+
bin_dir_path = Path(bin_dir_path)
1920

2021
# TODO: cache the latest version so it doesn't need to send a request each run
2122
version = environ.get("PYTAILWINDCSS_EXTRA_VERSION", "latest")

0 commit comments

Comments
 (0)