blob: 1aef80a70e2358f981f6318336139cad6ef42bfe (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# SPDX-License-Identifier: CC0-1.0
# Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
#
# Available under the terms of Creative Commons Zero v1.0 Universal.
import sys
from pathlib import Path
here = Path(__file__).resolve().parent
sys.path.insert(0, str(here / 'src'))
|