1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-25 10:26:00 +02:00

lint fixes

This commit is contained in:
Kyle Spearrin 2018-02-11 01:21:01 -05:00
parent e49e2c8ca7
commit 70b4f97f2c

View File

@ -1,5 +1,13 @@
import { app, ipcMain } from 'electron';
import { getPassword, setPassword, deletePassword } from 'keytar';
import {
app,
ipcMain,
} from 'electron';
import {
deletePassword,
getPassword,
setPassword,
} from 'keytar';
import { WindowMain } from './window.main';
@ -29,8 +37,7 @@ export class MessagingMain {
}
event.returnValue = val;
}
catch {
} catch {
event.returnValue = null;
}
});