Skip to content

Commit 96ffac9

Browse files
committed
linting fixed
1 parent 9e3ad05 commit 96ffac9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/uri-template.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ export class UriTemplate {
33
private _templateString: string = '';
44
constructor(fileExtensions: string, fileName: string, pythonScriptPath: string) {
55
this._templateString = `<usireginfo><storetype name="${fileName}">` +
6-
`<type>python</type>` +
6+
'<type>python</type>' +
77
`<alias>${fileName}</alias>` +
88
`<description>${fileName}</description>` +
9-
`<filepath>uspTdmMarshaller.dll</filepath>` +
10-
`<exportsupported>NO</exportsupported>` +
11-
`<caching>YES</caching>` +
9+
'<filepath>uspTdmMarshaller.dll</filepath>' +
10+
'<exportsupported>NO</exportsupported>' +
11+
'<caching>YES</caching>' +
1212
`<easypluginparam><![CDATA[<dllpath>@USIBINDIR@\\PythonMarshaller\\uspPythonMarshaller.dll</dllpath><script>${pythonScriptPath}</script>]]></easypluginparam>` +
13-
`<querysupported>0</querysupported>` +
14-
`<fastloadsupported>0</fastloadsupported>` +
13+
'<querysupported>0</querysupported>' +
14+
'<fastloadsupported>0</fastloadsupported>' +
1515
`<filefilters extension="${fileExtensions}"><description>${fileName} Dateien (' + fileExtensions + ')</description></filefilters>` +
16-
`<platform>x64</platform></storetype></usireginfo>`
16+
'<platform>x64</platform></storetype></usireginfo>';
1717
}
1818

1919
get templateString(): string {

0 commit comments

Comments
 (0)