Coverage for ezstitcher/ez/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.3.2, created at 2025-04-30 13:20 +0000
« prev ^ index » next coverage.py v7.3.2, created at 2025-04-30 13:20 +0000
1"""
2EZ module for simplified access to ezstitcher functionality.
4This module provides a simplified interface for common stitching workflows,
5making it easier for non-coders to use ezstitcher.
6"""
8from .core import EZStitcher
9from .functions import stitch_plate
11__all__ = [
12 'EZStitcher',
13 'stitch_plate',
14]