File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -243,12 +243,12 @@ def formatter(prog):
243
243
parser_export_transactions .add_argument (
244
244
"input" ,
245
245
help = "Input path to JSON (use all_events.json from dl_docs)" ,
246
- type = argparse .FileType ("r" , encoding = "utf8 " ),
246
+ type = argparse .FileType ("r" , encoding = "utf-8 " ),
247
247
)
248
248
parser_export_transactions .add_argument (
249
249
"output" ,
250
250
help = "Output file path" ,
251
- type = argparse .FileType ("w" , encoding = "utf8 " ),
251
+ type = argparse .FileType ("w" , encoding = "utf-8 " ),
252
252
default = "-" ,
253
253
nargs = "?" ,
254
254
)
Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ def finish_timeline_details(self, dl):
229
229
indent = 2 ,
230
230
)
231
231
232
- with (dl .output_path / "account_transactions.csv" ).open ("w" , encoding = "utf8 " ) as f :
232
+ with (dl .output_path / "account_transactions.csv" ).open ("w" , encoding = "utf-8 " ) as f :
233
233
TransactionExporter (
234
234
lang = dl .lang ,
235
235
date_with_time = dl .date_with_time ,
You can’t perform that action at this time.
0 commit comments