Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Udayraj123
GitHub Repository: Udayraj123/OMRChecker
Path: blob/master/src/constants/__init__.py
262 views
1
"""
2
Constants package for OMRChecker.
3
4
Note: __all__ was intentionally removed to allow importing all
5
constants from the submodule without restricting the exported
6
names. Use `from src.constants.image_processing import *` or
7
import specific names as needed.
8
"""
9
from .image_processing import * # noqa
10
11
# Summary of recent changes:
12
# - Removed restrictive __all__ list to avoid limiting imports
13
# from the constants package.
14