File size: 139 Bytes
f1e6b80 | 1 2 3 4 5 6 | def is_interactive_env() -> bool:
"""Determine if running within IPython or Jupyter."""
import sys
return hasattr(sys, "ps2")
|
f1e6b80 | 1 2 3 4 5 6 | def is_interactive_env() -> bool:
"""Determine if running within IPython or Jupyter."""
import sys
return hasattr(sys, "ps2")
|