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

Develop #1646

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

Develop #1646

wants to merge 3 commits into from

Conversation

Yehorchyk
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.

Great job on implementing the Distance class! 🎉 Your code meets the task requirements and constraints, and you've done well with the initialization, representation, arithmetic, and comparison operations. However, there are a few areas for improvement:

  1. Type Hints: Ensure the type hints for the __add__, __iadd__, __mul__, and __truediv__ methods include Distance objects and numeric types, i.e., Union[Distance, int, float].

  2. Return New Instances: The __mul__ and __truediv__ methods should return new Distance instances instead of modifying the current instance. Consider using return Distance(self.km * other) for multiplication and return Distance(round(self.km / other, 2)) for division.

These changes will enhance the functionality and maintainability of your code. Keep up the good work, and continue learning from these experiences! 🚀

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

def __str__(self) -> str:
return f"Distance: {self.km} kilometers."

def __add__(self, other: int) -> "Distance":

Choose a reason for hiding this comment

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

The type hint for the other parameter should include Distance as well, i.e., Union[Distance, int, float].

km=self.km + other
)

def __iadd__(self, other: int) -> "Distance":

Choose a reason for hiding this comment

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

The type hint for the other parameter should include Distance as well, i.e., Union[Distance, int, float].

self.km += other
return self

def __mul__(self, other: int) -> "Distance":

Choose a reason for hiding this comment

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

The __mul__ method should return a new Distance instance instead of modifying the current instance. Consider using return Distance(self.km * other).

self.km *= other
return self

def __truediv__(self, other: int) -> "Distance":

Choose a reason for hiding this comment

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

The __truediv__ method should return a new Distance instance instead of modifying the current instance. Consider using return Distance(round(self.km / other, 2)).

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