You've already forked langkit-query-language
mirror of
https://github.com/AdaCore/langkit-query-language.git
synced 2026-02-12 13:03:42 -08:00
10 lines
196 B
Python
10 lines
196 B
Python
import os
|
|
import sys
|
|
|
|
dir_path = os.path.dirname(os.path.realpath(__file__))
|
|
printers_path = os.path.join(dir_path, "..", "..")
|
|
|
|
sys.path.append(printers_path)
|
|
|
|
import printers # noqa: E402,F401
|