Skip to content

Commit

Permalink
fix: set last_month
Browse files Browse the repository at this point in the history
  • Loading branch information
azuki774 committed Jan 26, 2025
1 parent 6cf37ce commit 1608fb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/moneyforward/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ def run_scenario():
# lastmonth ページを表示
press_lastmonth_btn()
lg.info("lastmonth page move ok")
row_csv_data = download_csv_from_page(False)
row_csv_data = download_csv_from_page(True)
lg.info("download record(lastmonth) OK")

csv_text = []
for rc in row_csv_data:
# 1行ごとの文字列に変換
row_csv_text = convert_csv_data(rc, False, None)
row_csv_text = convert_csv_data(rc, True, None)
csv_text.append(row_csv_text)

lg.info("parse record(lastmonth) OK")
Expand Down

0 comments on commit 1608fb0

Please sign in to comment.