File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed
packages/jupyterlab-lsp/src/transclusions Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change @@ -8,5 +8,5 @@ export const DEFAULT_TRANSCLUSIONS: JupyterFrontEndPlugin<void>[] = [
8
8
IPYTHON_RPY2_TRANSCLUSIONS ,
9
9
IPYTHON_SQL_TRANSCLUSIONS ,
10
10
IPYTHON_TRANSCLUSIONS ,
11
- IPYTHON_BIGQUERY_TRANSCLUSIONS
11
+ IPYTHON_BIGQUERY_TRANSCLUSIONS
12
12
] ;
Original file line number Diff line number Diff line change 1
1
import { VirtualDocument } from '../../virtual/document' ;
2
2
import { expect } from 'chai' ;
3
3
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' ;
8
5
9
6
describe ( 'Bigquery SQL extractors' , ( ) => {
10
7
let document : VirtualDocument ;
@@ -41,7 +38,5 @@ describe('Bigquery SQL extractors', () => {
41
38
"select * from character\nwhere abbrev = 'ALICE'\n"
42
39
) ;
43
40
} ) ;
44
-
45
-
46
41
} ) ;
47
42
} ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ const single_argument_options = [
10
10
'--use_rest_api' ,
11
11
'--use_legacy_sql' ,
12
12
'--verbose' ,
13
- '--params'
13
+ '--params'
14
14
] ;
15
15
const zero_argument_options = [ '-l' , '--connections' ] ;
16
16
You can’t perform that action at this time.
0 commit comments