Administrator
2025-05-28 c62187f349fdb90fc3f525522a512af5a0a83a54
data_parser/transaction_big_order_parser.py
@@ -241,8 +241,8 @@
    if os.path.exists(output_path):
        print("路径已存在:", output_path)
        return
    df = __combined_df_cache.get(combined_path)
    if not df:
    df = __combined_df_cache.get(combined_path, None)
    if df is None:
        df = pd.read_csv(combined_path)
        __combined_df_cache[combined_path] = df
    df_copy = df.copy()