|
@@ -57,14 +57,14 @@ from
|
|
|
|
|
|
account_df = pd.read_sql(sql, product_db_engine)
|
|
|
account_df.drop_duplicates('account_id', keep='first', inplace=True)
|
|
|
-acc_list = [(item['account_id'], item['project_id']) for index, item in account_df.iterrows()]
|
|
|
+acc_list = [(int(item['account_id']), int(item['project_id'])) for index, item in account_df.iterrows()]
|
|
|
|
|
|
# TODO 注释测试代码 for test
|
|
|
# acc_list = [(10456827, 458), (9774238, 458)]
|
|
|
# acc_list = [(10456827, 458), (9774238, 458)]
|
|
|
# acc_list = [(10456827, 458)]
|
|
|
# acc_list = [(9774099, 458)]
|
|
|
-acc_list = [(9774238, 458)]
|
|
|
+# acc_list = [(9774238, 458)]
|
|
|
|
|
|
|
|
|
|