Skip to content

Commit 3e13efb

Browse files
committed
format
1 parent c2a3d69 commit 3e13efb

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

server/src/module/student/grading.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export class GradingService {
137137
const handIn = await this.getHandInFromDTO(dto);
138138
await this.updateGradingOfStudent({ student, dto, handIn });
139139
}
140-
await this.entityManager.flush()
140+
await this.entityManager.flush();
141141
}
142142

143143
/**

server/src/module/tutorial/tutorial.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ export class TutorialService implements CRUDService<ITutorial, TutorialDTO, Tuto
168168
}
169169

170170
this.entityManager.remove(tutorial.teams.getItems());
171-
this.entityManager.remove(tutorial.substitutes.getItems())
171+
this.entityManager.remove(tutorial.substitutes.getItems());
172172

173173
await this.repository.removeAndFlush(tutorial);
174174
}

server/src/module/user/user.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ export class UserService implements OnApplicationBootstrap, CRUDService<IUser, U
137137
}
138138

139139
if (errors.length === 0) {
140-
await this.repository.persistAndFlush(toCreate)
140+
await this.repository.persistAndFlush(toCreate);
141141
} else {
142142
throw new BadRequestException(errors);
143143
}

0 commit comments

Comments
 (0)