Skip to content

Commit

Permalink
update sheet name to 2024
Browse files Browse the repository at this point in the history
  • Loading branch information
shayki5 authored Feb 3, 2024
1 parent ad5a5f9 commit a765685
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gpt.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def create_new_sheet():
new_sheet.update('A1:O1', [column_titles])
print("New sheet created successfully!")

spreadsheet = client.open('ניהול הוצאות הבית 2023')
spreadsheet = client.open('ניהול הוצאות הבית 2024')
source_sheet = spreadsheet.worksheet('נוכחי')
new_sheet = spreadsheet.duplicate_sheet(source_sheet.id, new_sheet_name=formatted_date)
cell_formula = new_sheet.cell(3, 3, value_render_option='FORMULA').value
Expand Down Expand Up @@ -132,4 +132,4 @@ def check_transactions(sheet_name, sheet1_title, sheet2_title):
sheet2_title = formatted_date
#check_transactions(sheet_name, sheet1_title, sheet2_title)

create_new_sheet()
create_new_sheet()

0 comments on commit a765685

Please sign in to comment.