18
0

fix typo in the attendance... :P

This commit is contained in:
2020-10-12 10:50:30 -07:00
parent 5d5bea65d4
commit abf74b822c
2 changed files with 10 additions and 10 deletions

View File

@@ -10,11 +10,11 @@ myuw[!myuw$StudentNo %in% gs$Your.UW.student.number,]
## read all the folks who have been called and see who is missing from
## the google sheet
call.list <- unlist(lapply(list.files(".", pattern="^attendence-.*tsv$"), function (x) {
call.list <- unlist(lapply(list.files(".", pattern="^attendance-.*tsv$"), function (x) {
d <- read.delim(x)
strsplit(d[[2]], ",")
}))
})
)
present <- unique(call.list)
present[!present %in% gs[["Your.username.on.the.class.Discord.server"]]]