Functions-d 1.2.2__tar.gz → 1.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {functions_d-1.2.2 → functions_d-1.2.3}/Functions_d/Functions_d.py +1 -1
- {functions_d-1.2.2 → functions_d-1.2.3}/Functions_d.egg-info/PKG-INFO +1 -1
- {functions_d-1.2.2 → functions_d-1.2.3}/PKG-INFO +1 -1
- {functions_d-1.2.2 → functions_d-1.2.3}/setup.cfg +1 -1
- {functions_d-1.2.2 → functions_d-1.2.3}/Functions_d/__init__.py +0 -0
- {functions_d-1.2.2 → functions_d-1.2.3}/Functions_d.egg-info/SOURCES.txt +0 -0
- {functions_d-1.2.2 → functions_d-1.2.3}/Functions_d.egg-info/dependency_links.txt +0 -0
- {functions_d-1.2.2 → functions_d-1.2.3}/Functions_d.egg-info/requires.txt +0 -0
- {functions_d-1.2.2 → functions_d-1.2.3}/Functions_d.egg-info/top_level.txt +0 -0
- {functions_d-1.2.2 → functions_d-1.2.3}/README.md +0 -0
- {functions_d-1.2.2 → functions_d-1.2.3}/pyproject.toml +0 -0
- {functions_d-1.2.2 → functions_d-1.2.3}/setup.py +0 -0
|
@@ -798,7 +798,7 @@ class DataProcessingAndMessaging:
|
|
|
798
798
|
worksheet.write(row, col, value, data_format)
|
|
799
799
|
|
|
800
800
|
worksheet.freeze_panes(1, 0)
|
|
801
|
-
worksheet.autofilter(0, 0, max_row, max_col)
|
|
801
|
+
worksheet.autofilter(0, 0, max_row, max_col - 1) # 修正:结束列=max_col-1(比如2)
|
|
802
802
|
|
|
803
803
|
# -------------------------- 导出DataFrame到Excel --------------------------
|
|
804
804
|
def export_df_to_excel(self, df_list, sheet_names, file_path):
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|