From dae74286f9a4eb998d61b94c1a9cbcf944869baf Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 9 Oct 2024 14:34:58 +0530 Subject: [PATCH] chore: lint --- server/src/models/Robot.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/models/Robot.ts b/server/src/models/Robot.ts index 444dcf2d..a255c453 100644 --- a/server/src/models/Robot.ts +++ b/server/src/models/Robot.ts @@ -22,7 +22,7 @@ interface RobotAttributes { recording: Robot; } -interface RobotCreationAttributes extends Optional {} +interface RobotCreationAttributes extends Optional { } class Robot extends Model implements RobotAttributes { public id!: string; @@ -49,7 +49,7 @@ Robot.init( { sequelize, tableName: 'robot', - timestamps: false, + timestamps: false, } );