Cleanup; pretty

This commit is contained in:
PizZaKatZe 2021-12-18 11:30:58 +01:00
parent c96b65549f
commit 5c385c520a
5 changed files with 20 additions and 18 deletions

View file

@ -156,7 +156,7 @@ export class Group implements Movable {
/**
* A group can have at most one person leading the way in it.
*/
get leader(): User|undefined {
get leader(): User | undefined {
for (const user of this.users) {
if (user.hasFollowers()) {
return user;