diff --git a/scrape/parse/v3.ts b/scrape/parse/v3.ts index 3102505..113a621 100644 --- a/scrape/parse/v3.ts +++ b/scrape/parse/v3.ts @@ -274,7 +274,6 @@ function buildLessonArray(row: Row, ignoreAddress: string, themeColors: ThemeCol const colIndex = letterToNumber(cell.address.replace(/[0-9]/g, "")); lessons[colIndex] = parseLessonCell(cell, themeColors, ignoreColors); - console.log(lessons[colIndex]) }); const normalized = Array.from(lessons, (x) => (x === undefined ? null : x));