add copilot instructions and rename classes
This commit is contained in:
@@ -11,12 +11,12 @@ def _():
|
||||
from pathlib import Path
|
||||
|
||||
from validation import check_progress, duration_validation, check_straight_liners
|
||||
from utils import JPMCSurvey, combine_exclusive_columns, calculate_weighted_ranking_scores
|
||||
from utils import QualtricsSurvey, combine_exclusive_columns, calculate_weighted_ranking_scores
|
||||
import utils
|
||||
|
||||
from speaking_styles import SPEAKING_STYLES
|
||||
return (
|
||||
JPMCSurvey,
|
||||
QualtricsSurvey,
|
||||
Path,
|
||||
SPEAKING_STYLES,
|
||||
calculate_weighted_ranking_scores,
|
||||
@@ -49,8 +49,8 @@ def _(Path, file_browser, mo):
|
||||
|
||||
|
||||
@app.cell
|
||||
def _(JPMCSurvey, QSF_FILE, RESULTS_FILE, mo):
|
||||
S = JPMCSurvey(RESULTS_FILE, QSF_FILE)
|
||||
def _(QualtricsSurvey, QSF_FILE, RESULTS_FILE, mo):
|
||||
S = QualtricsSurvey(RESULTS_FILE, QSF_FILE)
|
||||
try:
|
||||
data_all = S.load_data()
|
||||
except NotImplementedError as e:
|
||||
|
||||
Reference in New Issue
Block a user