forked from Mirror/pmbootstrap
8 lines
229 B
Python
8 lines
229 B
Python
# Copyright 2023 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
import os
|
|
import sys
|
|
|
|
# Add topdir to import path
|
|
topdir = os.path.realpath(os.path.join(os.path.dirname(__file__) + "/../.."))
|
|
sys.path.insert(0, topdir)
|