core/homeassistant/util/environment.py

8 lines
158 B
Python
Raw Normal View History

""" Environement helpers. """
import sys
def is_virtual():
""" Return if we run in a virtual environtment. """
return sys.base_prefix != sys.prefix