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 #1453

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

Solution #1453

wants to merge 3 commits into from

Conversation

Bondzik-S
Copy link

No description provided.

Copy link

@AnyoneClown AnyoneClown left a comment

Choose a reason for hiding this comment

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

Read task properly

app/main.py Outdated
Comment on lines 6 to 7
def __init__(self, km: int) -> None:
self.km = km

Choose a reason for hiding this comment

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

km can also be float. Fix in all cases

app/main.py Outdated
def __repr__(self) -> str:
return f"Distance(km={self.km})"

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.

Import annotation from future to use type hints without quotes

app/main.py Outdated
Comment on lines 16 to 19
if isinstance(other, Distance):
return Distance(self.km + other.km)
elif isinstance(other, (int, float)):
return Distance(self.km + other)

Choose a reason for hiding this comment

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

We don't need to check it twice. If it's not Distance - it will be int or float

Copy link

@AnyoneClown AnyoneClown left a comment

Choose a reason for hiding this comment

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

Good job!

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.

3 participants