Commit 7444875
committed
Fix duplicate imports in __init__.py generation and resolve linter errors
Refactors `generate_init.py` to track previously imported names, ensuring that symbols exported by multiple modules are only imported once in the package `__init__.py`. This resolves F811 redefinition errors reported by linters.
Changes:
- `generate_init.py`: Added logic to filter out duplicate imports across modules and fixed the appending of import lines.
- `pat2vec/__init__.py`: Regenerated file, removing duplicate imports for `COLUMNS_TO_DROP`, `SEARCH_TERM`, and `filter_annot_dataframe`.
- `pat2vec/pat2vec_search/cogstack_search_methods.py`: Minor formatting fix for `field_list` assignment.1 parent 2cfedb6 commit 7444875
2 files changed
Lines changed: 11 additions & 8 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
70 | 70 | | |
71 | 71 | | |
72 | 72 | | |
| 73 | + | |
| 74 | + | |
73 | 75 | | |
74 | | - | |
75 | | - | |
| 76 | + | |
| 77 | + | |
| 78 | + | |
| 79 | + | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
76 | 83 | | |
| 84 | + | |
77 | 85 | | |
78 | 86 | | |
79 | 87 | | |
80 | 88 | | |
81 | | - | |
| 89 | + | |
82 | 90 | | |
83 | | - | |
84 | 91 | | |
85 | 92 | | |
86 | 93 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
59 | 59 | | |
60 | 60 | | |
61 | 61 | | |
62 | | - | |
63 | 62 | | |
64 | 63 | | |
65 | 64 | | |
| |||
81 | 80 | | |
82 | 81 | | |
83 | 82 | | |
84 | | - | |
85 | 83 | | |
86 | 84 | | |
87 | 85 | | |
| |||
92 | 90 | | |
93 | 91 | | |
94 | 92 | | |
95 | | - | |
96 | 93 | | |
97 | 94 | | |
98 | 95 | | |
| |||
399 | 396 | | |
400 | 397 | | |
401 | 398 | | |
402 | | - | |
403 | 399 | | |
404 | 400 | | |
405 | 401 | | |
| |||
0 commit comments