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

[IMP] (develop): Task - py_distance_class #1684

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

zhenya51600
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! 🎉 The functionality is solid and meets the task requirements. While there are some minor inconsistencies in the type hints, they don't impact the core functionality. Keep up the good work, and consider refining the type hints for even better code clarity in the future! 😊

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

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

def __add__(self, other: float) -> "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 in the __add__ method should be Union[Distance, int, float] instead of just float to accurately reflect the types that this method can handle.

else:
raise TypeError("Unsupported operand type(s) for +")

def __iadd__(self, other: float) -> "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 in the __iadd__ method should be Union[Distance, int, float] instead of just float to accurately reflect the types that this method can handle.

raise TypeError("Unsupported operand type(s) for +=")
return self

def __mul__(self, other: "Distance") -> "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 in the __mul__ method should be Union[int, float] instead of Distance to accurately reflect the types that this method can handle.

else:
raise TypeError("Unsupported operand type(s) for *")

def __truediv__(self, other: "Distance") -> "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 in the __truediv__ method should be Union[int, float] instead of Distance to accurately reflect the types that this method can handle.

else:
raise TypeError("Unsupported operand type(s) for /")

def __eq__(self, other: float) -> bool:

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 in the __eq__ method should be Union[Distance, int, float] instead of just float to accurately reflect the types that this method can handle.

else:
return NotImplemented

def __gt__(self, other: float) -> bool:

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 in the __gt__ method should be Union[Distance, int, float] instead of just float to accurately reflect the types that this method can handle.

else:
return NotImplemented

def __ge__(self, other: float) -> bool:

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 in the __ge__ method should be Union[Distance, int, float] instead of just float to accurately reflect the types that this method can handle.

else:
return NotImplemented

def __lt__(self, other: float) -> bool:

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 in the __lt__ method should be Union[Distance, int, float] instead of just float to accurately reflect the types that this method can handle.

else:
return NotImplemented

def __le__(self, other: float) -> bool:

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 in the __le__ method should be Union[Distance, int, float] instead of just float to accurately reflect the types that this method can handle.

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