Skip to content

Commit 8206194

Browse files
committed
refactor: remove unused vars
1 parent 90f8e2e commit 8206194

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

data

Submodule data updated from b47c34a to e5044dc

ferry/transform/import_evaluations.py

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,14 @@
11
import logging
22
from pathlib import Path
3-
import itertools
43
import re
54

6-
import asyncio
7-
import concurrent.futures
85
from tqdm import tqdm
96
import numpy as np
107
import pandas as pd
118
import ujson
129
from typing import cast, TypedDict
1310

1411
from ferry import database
15-
from ferry.crawler.evals.parse import ParsedEval
1612

1713

1814
def match_evaluations_to_courses(
@@ -77,9 +73,7 @@ class EvalTables(TypedDict):
7773
evaluation_questions: pd.DataFrame
7874

7975

80-
def import_evaluations(
81-
data_dir: Path, seasons: list[str], listings: pd.DataFrame
82-
) -> EvalTables:
76+
def import_evaluations(data_dir: Path, listings: pd.DataFrame) -> EvalTables:
8377
"""
8478
Import evaluations from JSON files in `data_dir`.
8579
Splits the raw data into various tables for the database.

0 commit comments

Comments
 (0)