blob: 69f3498cc89985adb2b66995cfd1b251469dd947 [file] [log] [blame]
# -*- coding: UTF-8 -*-
# pylint: disable=unused-import
# PYTHON VERSION COMPATIBILITY HELPER
try:
from shutil import which # -- SINCE: Python 3.3
except ImportError:
from backports.shutil_which import which