Fix lint warnings.
This commit is contained in:
parent
f4fa542e86
commit
6af05500e9
|
@ -17,7 +17,11 @@ import {
|
||||||
Schema,
|
Schema,
|
||||||
} from "@budibase/types"
|
} from "@budibase/types"
|
||||||
import { OAuth2Client } from "google-auth-library"
|
import { OAuth2Client } from "google-auth-library"
|
||||||
import { buildExternalTableId, checkExternalTables, finaliseExternalTables } from "./utils"
|
import {
|
||||||
|
buildExternalTableId,
|
||||||
|
checkExternalTables,
|
||||||
|
finaliseExternalTables,
|
||||||
|
} from "./utils"
|
||||||
import { GoogleSpreadsheet, GoogleSpreadsheetRow } from "google-spreadsheet"
|
import { GoogleSpreadsheet, GoogleSpreadsheetRow } from "google-spreadsheet"
|
||||||
import fetch from "node-fetch"
|
import fetch from "node-fetch"
|
||||||
import { cache, configs, context, HTTPError } from "@budibase/backend-core"
|
import { cache, configs, context, HTTPError } from "@budibase/backend-core"
|
||||||
|
|
|
@ -328,7 +328,7 @@ class MySQLIntegration extends Sql implements DatasourcePlus {
|
||||||
} finally {
|
} finally {
|
||||||
await this.disconnect()
|
await this.disconnect()
|
||||||
}
|
}
|
||||||
|
|
||||||
let externalTables = finaliseExternalTables(tables, entities)
|
let externalTables = finaliseExternalTables(tables, entities)
|
||||||
let errors = checkExternalTables(tables)
|
let errors = checkExternalTables(tables)
|
||||||
return { tables: externalTables, errors }
|
return { tables: externalTables, errors }
|
||||||
|
|
Loading…
Reference in New Issue