bumblebee-status/bumblebee_status/discover.py
2020-05-09 21:24:28 +02:00

12 lines
233 B
Python

import os
import sys
def discover():
libdir = os.path.abspath(
os.path.join(os.path.dirname(__file__), "..", "bumblebee_status")
)
sys.path.append(libdir)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4