Skip to content

Commit f956d1c

Browse files
mfisher87martinRenou
authored andcommitted
Lint 🔔
1 parent 13f5a86 commit f956d1c

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

python/jupytergis_core/src/jgisplugin/plugins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {ICollaborativeContentProvider} from '@jupyter/collaborative-drive';
1+
import { ICollaborativeContentProvider } from '@jupyter/collaborative-drive';
22
import { CommandIDs, logoIcon, logoMiniIcon } from '@jupytergis/base';
33
import {
44
IAnnotationModel,

python/jupytergis_qgis/src/plugins.ts

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,11 @@ const activate = async (
262262

263263
// Check if the file exists
264264
let fileExist = true;
265-
await app.serviceManager.contents.get(absolutePath, { content: false }).catch(() => {
266-
fileExist = false;
267-
});
265+
await app.serviceManager.contents
266+
.get(absolutePath, { content: false })
267+
.catch(() => {
268+
fileExist = false;
269+
});
268270
if (fileExist) {
269271
const overwrite = await showDialog({
270272
title: 'Export the project to QGZ file',

0 commit comments

Comments
 (0)