Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
This pull request adds a new Python project, the BMI Calculator App, to the
python-mini-project
repository and fixes an issue with an invalid file path that prevents cloning on Windows.New Project:
The BMI Calculator App calculates a user’s Body Mass Index (BMI) based on their height and weight, supports both Centimeters/Pounds and Meters/Kilograms units, and displays a dynamic BMI category table with an arrow pointing to the user’s category. The project includes:
bmi_calc.py
: The main Python script implementing the BMI calculator.README.md
: Documentation explaining the app’s features and usage.The project is placed in a new folder
BMI_Calculator
to follow the repository’s structure.Bug Fix:
The repository contained a file with an invalid character (
:
) in its name:NASA_Image_Extraction/Astro_Images/2022-11-25_NGC 6744: Extragalactic Close-Up.mp3
. This caused checkout failures on Windows due to the colon being a reserved character. The file has been renamed to2022-11-25_NGC_6744_Extragalactic_Close-Up.mp3
(replacing:
with_
) to ensure compatibility with Windows filesystems.Fixes #375
Type of change
Project
Your Project Name: BMI Calculator App
Short Description: A Python application that calculates Body Mass Index (BMI) based on user-provided height and weight, supports multiple units, and displays a dynamic BMI category table with a visual indicator for the user’s category.
Checklist:
README.md
, according to the givenREADME_TEMPLATE.