Format code with prettier

This commit fixes the style issues introduced in d0c1ace according to the output
from prettier.

Details: https://deepsource.io/gh/MillenniumEarl/F95API/transform/048f934f-c8c9-43e6-9474-ff3e3ec8c687/
pull/23/head
deepsource-autofix[bot] 2020-10-15 14:50:03 +00:00 committed by GitHub
parent d0c1acebc4
commit de4df9a80b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -294,7 +294,7 @@ async function getLastChangelog(page) {
let post = (await page.$$(selectors.THREAD_POSTS))[0]; let post = (await page.$$(selectors.THREAD_POSTS))[0];
let spoiler = await post.$(selectors.THREAD_LAST_CHANGELOG); let spoiler = await post.$(selectors.THREAD_LAST_CHANGELOG);
if(!spoiler) return null; if (!spoiler) return null;
let changelogHTML = await page.evaluate( let changelogHTML = await page.evaluate(
/* istanbul ignore next */ /* istanbul ignore next */