Closed Nauman702 closed 2 years ago
@oesteban Please check. I installed the black and updated metrics.py file. Thanks
You have a conflict in scripts/validate_data.py
.
The reason for this conflict to appear is that this commit (probably mistakenly) adds one more file (scripts/validate_data.py
) to the changes.
There are two relevant aspects to note here:
scripts/validate_data.py
was not up-to-date in your main
branch of the repository.Let's fix that problem first.
git checkout -b rescue-validate-data-edits main
scripts/validate_data.py
from the new branch:
git checkout add-dvars-black -- scripts/validate_data.py
black scripts/validate_data.py
git add scripts/validate_data.py
git commit -m "enh: add implementation of data validation (exercise response)"
git push -u origin rescue-validate-data-edits
Once we make sure your code in scripts/validate_data.py
is not going to waste, we will come back to this PR and finally resolve the conflict.
updated for style (after installing black)