Skip to content

Commit e9ebe19

Browse files
committed
schedclock: remove unused variable in lib.js
1 parent bbf19ed commit e9ebe19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/schedclock/lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ exports.syncAlarms = function() {
2323
const settings = require("Storage").readJSON(SETTINGS_FILE, 1) || [];
2424

2525
// Remove all existing alarms from the scheduler library
26-
const alarms = require("sched")
26+
require("sched")
2727
.getAlarms()
2828
.filter(a => a.appid && a.appid === "schedclock")
2929
.forEach(a => require("sched").setAlarm(a.id, undefined));

0 commit comments

Comments
 (0)