forked from FoundKeyGang/FoundKey
Do not declare two variables in a statement
This commit is contained in:
parent
e330ac1934
commit
a5715ecc1b
1 changed files with 2 additions and 1 deletions
|
@ -15,7 +15,8 @@ export default async ({ data }, done) => {
|
|||
return;
|
||||
}
|
||||
|
||||
let follower, followee;
|
||||
let follower;
|
||||
let followee;
|
||||
|
||||
try {
|
||||
[follower, followee] = await Promise.all([
|
||||
|
|
Loading…
Reference in a new issue