Skip to content

Commit

Permalink
TDD Pandas - [GREEN] Just pass the test
Browse files Browse the repository at this point in the history
  • Loading branch information
diligejy committed Jan 19, 2024
1 parent 520f504 commit de14ccb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PyCon_PL/Test_Driven_Pandas/tests/test_gradebook.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pandas as pd

def generate_gradebook(students_df:pd.DataFrame) -> dict[int, pd.DataFrame]:
return {}
return {1: pd.DataFrame()}

def test_results_are_grouped_by_student_group():
students = [{
Expand Down

0 comments on commit de14ccb

Please sign in to comment.