Skip to content

Commit 0972adf

Browse files
0.0.15
1 parent e956ce8 commit 0972adf

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

snok/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""snok"""
22

3-
__version__ = "0.0.14"
3+
__version__ = "0.0.15"

snok/utils.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import os
2+
import sys
23
from typing import Any, Dict, Iterable, List, Optional
34

45
import httpx
@@ -202,3 +203,7 @@ def _install_node_module_requirements() -> None: # pragma: no cover
202203
"prettier",
203204
]
204205
)
206+
207+
208+
def _check_pty() -> bool: # pragma: no cover
209+
return sys.platform not in ["win32", "cygwin", "msys"]

0 commit comments

Comments
 (0)