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

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

Solution #669

wants to merge 5 commits into from

Conversation

valikdeb
Copy link

No description provided.

Copy link

@Dimosphen1 Dimosphen1 left a comment

Choose a reason for hiding this comment

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

Several changes were requested.

app/main.py Outdated
Comment on lines 13 to 15
name = self.name
health = self.health
hidden = self.hidden

Choose a reason for hiding this comment

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

Remove these variables, and call self.variable_name directly in the f-string.

Copy link
Author

@valikdeb valikdeb Sep 15, 2023

Choose a reason for hiding this comment

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

will be "Line to long" error

app/main.py Outdated

class Carnivore(Animal):
@staticmethod
def bite(other_animal: Animal) -> None:

Choose a reason for hiding this comment

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

You should apply the bite method to Herbivore instances only, indicate this in your type annotation.

@valikdeb valikdeb requested a review from Dimosphen1 September 15, 2023 11:56
app/main.py Outdated
class Animal:
alive = []

def __init__(self, name: str,

Choose a reason for hiding this comment

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

write each parameter from new line

app/main.py Outdated
def __repr__(self) -> str:
return (f"{{Name: {self.name}, "
+ f"Health: {self.health},"
+ f" Hidden: {self.hidden}}}")

Choose a reason for hiding this comment

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

'+' is redundant

@valikdeb valikdeb requested a review from pavlejviki September 15, 2023 12:38
Copy link

@pavlejviki pavlejviki left a comment

Choose a reason for hiding this comment

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

Well done!

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