Skip to content

Commit

Permalink
try fix array of array gsheet
Browse files Browse the repository at this point in the history
  • Loading branch information
jrafaelrn committed Apr 23, 2024
1 parent 1d3ad22 commit 61dde4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions/bd_transaction/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def insert_transaction(date_trx, account, original_description, document, entity
#Save BD
for col in range(ord('a'), ord('i') + 1):
coluna = chr(col)
conteudo = [row[col - ord('a')]]
conteudo = [[row[col - ord('a')]]]

if conteudo == '':
continue
Expand Down

0 comments on commit 61dde4c

Please sign in to comment.