Skip to content

Commit

Permalink
chore: fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
pviti committed Sep 4, 2024
1 parent ce186e7 commit 9dc88e5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/commands/exports/all.ts
Original file line number Diff line number Diff line change
Expand Up @@ -441,8 +441,7 @@ if (DEBUG) console.log(`numRecords: ${numRecords}, expRecords: ${expRecords}`)
let exportCounter = 0

for (const e of exports) {
// [2024-09-04] Retrieve needed to resfresh S3 url
const expFresh = await this.cl.exports.retrieve(e)
const expFresh = await this.cl.exports.retrieve(e) // Retrieve needed to resfresh S3 url
e.attachment_url = expFresh.attachment_url
if (DEBUG) console.log(`Getting file ${e.attachment_url}`)
const fileExport = await this.getExportedFile(e.attachment_url, flags)
Expand Down

0 comments on commit 9dc88e5

Please sign in to comment.