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

Closed
wants to merge 3 commits into from
Closed

Solution #889

wants to merge 3 commits into from

Conversation

AlexGrytsai
Copy link

No description provided.

app/main.py Outdated
Comment on lines 4 to 5
def __init__(self, name: str, health: int = 100,
hidden: bool = False) -> None:

Choose a reason for hiding this comment

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

If you separate arguments to a few lines, each argument must be in a separate line

Suggested change
def __init__(self, name: str, health: int = 100,
hidden: bool = False) -> None:
def __init__(
self,
name: str,
health: int = 100,
hidden: bool = False
) -> None:

Copy link

@EdAlekseiev EdAlekseiev 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

@AlexGrytsai AlexGrytsai closed this by deleting the head repository Apr 9, 2024
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