Skip to content

Commit

Permalink
fixed flake8(1)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikrise2 committed Feb 29, 2024
1 parent 709b015 commit 85ba0dc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions jba/src/processing/tasktracker_edu_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,7 @@ def research_to_email(users_path: Path, researches_path: Path) -> Dict[str, str]
EMAIL_COLUMN].to_dict()


# noqa: WPS320
def split_dataframe(filtered_df: pd.DataFrame, edu_df: pd.DataFrame, res_to_email: Dict[str, str]) -> (
def split_dataframe(filtered_df: pd.DataFrame, edu_df: pd.DataFrame, res_to_email: Dict[str, str]) -> ( # noqa: WPS320
pd.DataFrame, pd.DataFrame):
filtered_df[EMAIL_COLUMN] = filtered_df[RESEARCH_ID_COLUMN].map(res_to_email)
edu_emails = edu_df[EMAIL_COLUMN].unique()
Expand Down

0 comments on commit 85ba0dc

Please sign in to comment.