We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36aa8c9 commit 92e6f71Copy full SHA for 92e6f71
1 file changed
pytailwindcss_extra/main.py
@@ -15,7 +15,8 @@
15
def main() -> None:
16
bin_dir_path = environ.get("PYTAILWINDCSS_EXTRA_BIN_DIR")
17
if not bin_dir_path:
18
- bin_dir_path = Path(__file__).parent.resolve() / "bin"
+ bin_dir_path: Path = Path(__file__).parent.resolve() / "bin"
19
+ bin_dir_path = Path(bin_dir_path)
20
21
# TODO: cache the latest version so it doesn't need to send a request each run
22
version = environ.get("PYTAILWINDCSS_EXTRA_VERSION", "latest")
0 commit comments