17 lines
330 B
Python
17 lines
330 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
Created on Sun May 14 13:48:42 2023
|
|
|
|
@author: Edward Middleton-Smith
|
|
Precision And Research Technology Systems Limited
|
|
|
|
Project: Braille Model Generator
|
|
|
|
Feature: test context
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), '..')))
|
|
|
|
import model_gen |