chore: fix lint warnings (#385)

This commit is contained in:
Samuel Gunter
2024-10-22 21:47:35 -05:00
committed by GitHub
parent 643ea13207
commit eb306787ae
9 changed files with 19 additions and 15 deletions

View File

@@ -22,8 +22,6 @@ const TableDataSelector = {
CORE_CURRICULUM: 'td[data-th="Core"] ul li',
} as const satisfies Record<string, string>;
type TableDataSelectorType = (typeof TableDataSelector)[keyof typeof TableDataSelector];
/**
* The selectors that we use to scrape the course details page for an individual course (https://utdirect.utexas.edu/apps/registrar/course_schedule/20239/52700/)
*/
@@ -32,8 +30,6 @@ const DetailsSelector = {
COURSE_DESCRIPTION: '#details p',
} as const;
type DetailsSelectorType = (typeof DetailsSelector)[keyof typeof DetailsSelector];
/**
* A class that allows us to scrape information from UT's course catalog to create our internal representation of a course
*/