Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Solution_v1_MK #1262

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open

Solution_v1_MK #1262

wants to merge 2 commits into from

Conversation

Mike87git
Copy link

No description provided.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


Thank you for your hard work on this task! 😊 While your implementation is mostly correct and meets the task requirements, there's a critical issue that needs to be addressed before we can approve the Pull Request.

In the FullStackDeveloper class, the methods create_powerful_api and create_awesome_web_page are called before they are defined. This will lead to a runtime error when create_web_application is executed. To resolve this, please ensure these methods are properly defined within the class before they are called.

Once this issue is fixed, your code should be good to go! Keep up the great work, and don't hesitate to reach out if you need any help. 🚀

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

🔄 Fix the issues, commit the changes, and then re-request my review using the Re-request review button in the Reviewers tab.

app/main.py Outdated
Comment on lines 50 to 53
def create_web_application(self) -> None:
print(f"{self.name} started creating a web application...")
self.create_powerful_api()
self.create_awesome_web_page()

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The methods create_powerful_api and create_awesome_web_page are called before they are defined in the FullStackDeveloper class. This will result in a runtime error. Consider defining these methods before calling them in create_web_application.

Copy link

@mateacademy-ai-mentor mateacademy-ai-mentor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Great job on implementing the class hierarchy for different types of software engineers! 🎉 Your code is well-structured and meets the task requirements. Just a small suggestion: consider changing 'Android studio' to 'Android Studio' for consistency with naming conventions. This will help maintain a professional standard in your code. Keep up the good work, and remember to review the comments to further improve your skills. Happy coding! 🚀

✨ Please rate this review in the Platform's notification center. I will be grateful for your feedback! ✨

class AndroidDeveloper(SoftwareEngineer):
def __init__(self, name: str) -> None:
super().__init__(name)
self.skills.extend(["Java", "Android studio"])

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider changing 'Android studio' to 'Android Studio' to maintain consistency with proper naming conventions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants