Skip to content

Commit bbfa411

Browse files
committed
Fix linter?
1 parent 4c9f480 commit bbfa411

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/api/query/utils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ export function schemaToRel(schema: CsvConfigSchema) {
9999
const qs: string[] = [];
100100

101101
Object.keys(schema).forEach(colName => {
102-
qs.push(`def config[:schema, ${colName}]: ${toRelLiteral(schema[colName])}`);
102+
qs.push(
103+
`def config[:schema, ${colName}]: ${toRelLiteral(schema[colName])}`,
104+
);
103105
});
104106

105107
return qs;

0 commit comments

Comments
 (0)