Skip to content

Commit

Permalink
0.0.15
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonycorletti committed Sep 20, 2023
1 parent e956ce8 commit 0972adf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion snok/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""snok"""

__version__ = "0.0.14"
__version__ = "0.0.15"
5 changes: 5 additions & 0 deletions snok/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import sys
from typing import Any, Dict, Iterable, List, Optional

import httpx
Expand Down Expand Up @@ -202,3 +203,7 @@ def _install_node_module_requirements() -> None: # pragma: no cover
"prettier",
]
)


def _check_pty() -> bool: # pragma: no cover
return sys.platform not in ["win32", "cygwin", "msys"]

0 comments on commit 0972adf

Please sign in to comment.