You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove private parser functions from config module public interface
Removed _parse_config_file and _parse_config from chipflow_lib.config
imports. These are internal/private functions (indicated by underscore
prefix) and should not be accessible via the config module's public
interface.
Updated:
- chipflow_lib/config/__init__.py: Removed imports of private functions
- chipflow_lib/__init__.py: Import _parse_config directly from config.parser
- tests/test_init.py: Import _parse_config_file from config.parser submodule
These functions remain accessible internally but are no longer exposed
as part of the config module's public API.
0 commit comments