Skip to content

Commit 83285d6

Browse files
committed
Fix lint
1 parent e83d1ab commit 83285d6

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

source/utils/trinoUtils.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,10 @@ export function mapTrinoSchemaToPermitResources(
220220
type: 'string',
221221
description: `${table.catalog}.${table.schema}.${table.name}`,
222222
},
223-
table_type: { type: 'string', description: table.type.toLowerCase() },
223+
table_type: {
224+
type: 'string',
225+
description: table.type.toLowerCase(),
226+
},
224227
type: {
225228
type: trinoTypeToPermitType(column.type),
226229
description: column.type,

0 commit comments

Comments
 (0)