Skip to content

Commit

Permalink
build check format fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ladriennel committed Mar 2, 2025
1 parent 93cea07 commit 64a5596
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/dao/InterviewSchedulerDao.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export default class InterviewSchedulerDao extends BaseDao<InterviewScheduler, I
/**
* Gets a specific instance of Interview Scheduler with uuid
* @param uuid the uuid of a Interview Scheduler instance
* @returns a promise resolving to a specific instance if found and null otherwise
* @returns a promise resolving to a specific instance if found and null otherwise
*/
async getInstance(uuid: string): Promise<InterviewScheduler | null> {
return this.getDocument(uuid);
Expand Down Expand Up @@ -53,7 +53,7 @@ export default class InterviewSchedulerDao extends BaseDao<InterviewScheduler, I
async updateInstance(instance: InterviewScheduler): Promise<InterviewScheduler> {
return this.updateDocument(instance.uuid, instance);
}

/**
* Deletes an instance of Interview Scheduler
* @param uuid the uuid of the instance to delete
Expand Down

0 comments on commit 64a5596

Please sign in to comment.