Commit cfa7d5b
committed
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.1 parent 4ecac7a commit cfa7d5b
3 files changed
+2
-4
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | | - | |
28 | | - | |
29 | 27 | | |
30 | 28 | | |
31 | 29 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| |||
0 commit comments