Skip to content

Commit 4bcae4b

Browse files
author
Serhat YILDIRIM
committed
update transclusions, run jlpm lint
1 parent 9049b84 commit 4bcae4b

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

packages/jupyterlab-lsp/src/transclusions/defaults.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ export const DEFAULT_TRANSCLUSIONS: JupyterFrontEndPlugin<void>[] = [
88
IPYTHON_RPY2_TRANSCLUSIONS,
99
IPYTHON_SQL_TRANSCLUSIONS,
1010
IPYTHON_TRANSCLUSIONS,
11-
IPYTHON_BIGQUERY_TRANSCLUSIONS
11+
IPYTHON_BIGQUERY_TRANSCLUSIONS
1212
];

packages/jupyterlab-lsp/src/transclusions/ipython-bigquery/extractors.spec.ts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
11
import { VirtualDocument } from '../../virtual/document';
22
import { expect } from 'chai';
33
import { foreign_code_extractors } from './extractors';
4-
import {
5-
extract_code,
6-
get_the_only_virtual
7-
} from '../../extractors/testutils';
4+
import { extract_code, get_the_only_virtual } from '../../extractors/testutils';
85

96
describe('Bigquery SQL extractors', () => {
107
let document: VirtualDocument;
@@ -41,7 +38,5 @@ describe('Bigquery SQL extractors', () => {
4138
"select * from character\nwhere abbrev = 'ALICE'\n"
4239
);
4340
});
44-
45-
4641
});
4742
});

packages/jupyterlab-lsp/src/transclusions/ipython-bigquery/extractors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ const single_argument_options = [
1010
'--use_rest_api',
1111
'--use_legacy_sql',
1212
'--verbose',
13-
'--params'
13+
'--params'
1414
];
1515
const zero_argument_options = ['-l', '--connections'];
1616

0 commit comments

Comments
 (0)