chore: fix linting (#23473)

This commit is contained in:
Samuel Attard 2020-05-08 11:30:37 -07:00 committed by GitHub
parent 21900fe4f4
commit 091f45b879
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 37 deletions

View file

@ -1,6 +1,6 @@
const { app, session } = require('electron')
const { app, session } = require('electron');
app.on('ready', () => {
session.fromPartition('in-memory')
process.exit(0)
})
session.fromPartition('in-memory');
process.exit(0);
});