blob: e4fdca308f44cdaed11a0f20032fb36ff2b87002 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# coding=utf-8
"""
Helper script to check that inkex can be imported with stdout closed
"""
import sys
import importlib
from pathlib import Path
sys.path.append(str(Path(sys.path[0]).parent))
sys.stdout.close()
sys.stdout = None
import inkex
|