-
Notifications
You must be signed in to change notification settings - Fork 65
Open
Description
This can lead to ambiguity in what is intended to be exposed when using from opencc import *.
Adding __all__ = ["OpenCC"] will:
- Clearly define
OpenCCas part of the public API. - Avoid potential issues with unintended imports.
- Improve maintainability and clarify module structure.
This follows Python best practices for explicitly defining module exports.
##########################################################
# Author: Yichen Huang (Eugene)
# GitHub: https://github.com/yichen0831/opencc-python
# January, 2016
##########################################################
from .opencc import OpenCC
+ __all__ = ["OpenCC"]
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels