Skip to content

Commit

Permalink
Merge pull request #21 from akapoorcern/master
Browse files Browse the repository at this point in the history
fixed a minor bug with modifydf
  • Loading branch information
a-kapoor authored Jul 27, 2021
2 parents 90ce300 + dc0a66e commit cc8e65c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Trainer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@
],
"source": [
"try:\n",
" Conf.modifydf(df_final)\n",
" df_final=Conf.modifydf(df_final)\n",
" print(\"Dataframe modification is done using modifydf\")\n",
"except:\n",
" print(\"Looks fine\")"
Expand Down
2 changes: 1 addition & 1 deletion Trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ def modify(df):


try:
Conf.modifydf(df_final)
df_final=Conf.modifydf(df_final)
print("Dataframe modification is done using modifydf")
except:
print("Looks fine")
Expand Down

0 comments on commit cc8e65c

Please sign in to comment.