12 lines
No EOL
431 B
Python
12 lines
No EOL
431 B
Python
"""Simple test script to identify import issues."""
|
|
import os
|
|
import sys
|
|
|
|
# Add parent directory to path
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
|
|
# This should print the file's content without executing it
|
|
with open(os.path.join(os.path.dirname(os.path.dirname(__file__)),
|
|
'checks', 'colour_existence_check.py'), 'r') as f:
|
|
content = f.read()
|
|
print(content) |