summaryrefslogtreecommitdiffstats
path: root/test/toolpath/relative_import/image/tools/TestTool1/__init__.py
blob: d5510d2ca62c869e82a399ee6beb2719854cbbdc (plain)
1
2
3
4
5
6
7
8
9
from . import TestTool1_1

def generate(env):
    env['TestTool1'] = 1
    # Include another tool within the same directory

    TestTool1_1.generate(env)
def exists(env):
    TestTool1_1.exists(env)
    return 1