add student dataclass

This commit is contained in:
SowinskiBraeden committed 2022-11-30 19:14:02 -08:00
1 parent be766eb962
commit 283c5e72ff
6 files changed
+124 -98

No files matched your search

+7
View File
@@ -1,8 +1,15 @@
#!/usr/bin/env python3.11
import json
import csv
from dataclasses import dataclass
from app.util.estimateGrade import getGrade
@dataclass
class Request:
CrsNo: str
Description: str
Alt: bool
# Get all requested courses from data
def getCourses(
data_dir: str,